diff options
author | lpsolit%gmail.com <> | 2006-08-12 07:25:08 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-08-12 07:25:08 +0200 |
commit | b7358c827a981c240e925b5a547dfb7bcdfc6738 (patch) | |
tree | 82c4c1f1facb4617479389da3f1e6128fa21c3a4 /template | |
parent | 7a3222151fdb306d1e64cc942b0eb44b2662c79a (diff) | |
download | bugzilla-b7358c827a981c240e925b5a547dfb7bcdfc6738.tar.gz bugzilla-b7358c827a981c240e925b5a547dfb7bcdfc6738.tar.xz |
Bug 310753: editflagtypes.cgi page fails w3 validation - Patch by victory(_RSZ_) <bmo@rsz.jp> r=LpSolit a=myk
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/admin/flag-type/list.html.tmpl | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/template/en/default/admin/flag-type/list.html.tmpl b/template/en/default/admin/flag-type/list.html.tmpl index f578c3a17..94fe3da0c 100644 --- a/template/en/default/admin/flag-type/list.html.tmpl +++ b/template/en/default/admin/flag-type/list.html.tmpl @@ -26,7 +26,8 @@ [% PROCESS global/header.html.tmpl title = 'Administer Flag Types' style = " - table#flag_types tr th { text-align: left; } + table#flag_types_bugs tr th, + table#flag_types_attachments tr th { text-align: left; } .inactive { color: #787878; } .multiplicable { display: block; } " @@ -86,7 +87,7 @@ <h3>Flag Types for [% terms.Bugs %]</h3> -[% PROCESS display_flag_types types=bug_types %] +[% PROCESS display_flag_types types=bug_types types_id='bugs' %] <p> <a href="editflagtypes.cgi?action=enter&target_type=bug">Create Flag Type for [% terms.Bugs %]</a> @@ -94,7 +95,7 @@ <h3>Flag Types for Attachments</h3> -[% PROCESS display_flag_types types=attachment_types %] +[% PROCESS display_flag_types types=attachment_types types_id='attachments' %] <p> <a href="editflagtypes.cgi?action=enter&target_type=attachment">Create Flag Type For Attachments</a> @@ -123,7 +124,7 @@ [% BLOCK display_flag_types %] - <table id="flag_types" cellspacing="0" cellpadding="4" border="1"> + <table id="flag_types_[% types_id FILTER html %]" cellspacing="0" cellpadding="4" border="1"> <tr> <th>Edit name ...</th> |