From 8e808ffbf7b7b28a1cdfda3d188cc156a2e879d9 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Wed, 6 Sep 2006 02:18:26 +0000 Subject: Bug 351098: Make Bugzilla::Object able to update objects in the database, and make Bugzilla::Keyword use it Patch By Max Kanat-Alexander r=LpSolit, a=myk --- template/en/default/admin/keywords/edit.html.tmpl | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'template/en/default/admin/keywords/edit.html.tmpl') diff --git a/template/en/default/admin/keywords/edit.html.tmpl b/template/en/default/admin/keywords/edit.html.tmpl index b6b5fc932..0d3beaf33 100755 --- a/template/en/default/admin/keywords/edit.html.tmpl +++ b/template/en/default/admin/keywords/edit.html.tmpl @@ -18,13 +18,11 @@ # # Contributor(s): Terry Weissman # Vlad Dascalu + # Max Kanat-Alexander #%] [%# INTERFACE: - # keyword_id: number. The ID of the keyword. - # name: string. The name of the keyword. - # description: string. The description of the keyword. - # bug_count: number. The number of bugs with the keyword. + # keyword: A Bugzilla::Keyword object. #%] [% PROCESS global/variables.none.tmpl %] @@ -37,7 +35,8 @@ - + @@ -47,16 +46,16 @@ minrows = 4 cols = 64 wrap = 'virtual' - defaultcontent = description + defaultcontent = keyword.description %]
Name:
Description:
[% terms.Bugs %]: - [% IF bug_count > 0 %] - - [% bug_count %] + [% IF keyword.bug_count > 0 %] + + [% keyword.bug_count FILTER html %] [% ELSE %] none [% END %] @@ -66,7 +65,7 @@ - +

Edit other keywords.

-- cgit v1.2.3-24-g4f1b