diff options
author | lpsolit%gmail.com <> | 2005-07-11 05:26:50 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-07-11 05:26:50 +0000 |
commit | f7f3311ba8e7c11dd1860c943eadd3a467a4c6f3 (patch) | |
tree | eccafc54e2fed7c74e15b796b88678a792d2b08d /template/en/default/flag | |
parent | f7b63bd7f86a028796283faf088062258151b8ed (diff) | |
download | bugs-f7f3311ba8e7c11dd1860c943eadd3a467a4c6f3.tar bugs-f7f3311ba8e7c11dd1860c943eadd3a467a4c6f3.tar.gz bugs-f7f3311ba8e7c11dd1860c943eadd3a467a4c6f3.tar.bz2 bugs-f7f3311ba8e7c11dd1860c943eadd3a467a4c6f3.tar.xz bugs-f7f3311ba8e7c11dd1860c943eadd3a467a4c6f3.zip |
Bug 181023: Make flag descriptions visible to bugzilla users - Patch by Rob Siklos <robzilla@siklos.ca> r=LpSolit a=justdave
Diffstat (limited to 'template/en/default/flag')
-rw-r--r-- | template/en/default/flag/list.html.tmpl | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/template/en/default/flag/list.html.tmpl b/template/en/default/flag/list.html.tmpl index 3d8161ff1..1ec8ed6f8 100644 --- a/template/en/default/flag/list.html.tmpl +++ b/template/en/default/flag/list.html.tmpl @@ -98,10 +98,12 @@ [% flag.setter.nick FILTER html %]: </td> <td> - [% type.name FILTER html FILTER no_break %] + <label title="[% type.description FILTER html %]"> + [%- type.name FILTER html FILTER no_break %]</label> </td> <td> <select id="flag-[% flag.id %]" name="flag-[% flag.id %]" + title="[% type.description FILTER html %]" onchange="toggleRequesteeField(this);"> <option value="X"></option> [% IF type.is_active %] @@ -137,9 +139,13 @@ [% IF (!type.flags || type.flags.size == 0) && type.is_active %] <tr> <td> </td> - <td>[% type.name FILTER html FILTER no_break %]</td> + <td> + <label title="[% type.description FILTER html %]"> + [%- type.name FILTER html FILTER no_break %]</label> + </td> <td> <select id="flag_type-[% type.id %]" name="flag_type-[% type.id %]" + title="[% type.description FILTER html %]" onchange="toggleRequesteeField(this);"> <option value="X"></option> <option value="+">+</option> @@ -172,9 +178,13 @@ [% separator_displayed = 1 %] [% END %] <tr> - <td colspan="2">addl. [% type.name FILTER html FILTER no_break %]</td> + <td colspan="2"> + addl. <label title="[% type.description FILTER html %]"> + [%- type.name FILTER html FILTER no_break %]</label> + </td> <td> <select id="flag_type-[% type.id %]" name="flag_type-[% type.id %]" + title="[% type.description FILTER html %]" onchange="toggleRequesteeField(this);"> <option value="X"></option> <option value="+">+</option> |