diff options
author | lpsolit%gmail.com <> | 2007-03-10 01:48:53 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-03-10 01:48:53 +0100 |
commit | bbedda2778b5759c4be1971c697c4c4877211b81 (patch) | |
tree | 8f044d02c88c6e77c5f148af02f6382549781686 /template/en | |
parent | 6e56a9271349f3935d070a08ad8f96788e0b79fd (diff) | |
download | bugzilla-bbedda2778b5759c4be1971c697c4c4877211b81.tar.gz bugzilla-bbedda2778b5759c4be1971c697c4c4877211b81.tar.xz |
Bug 362813: Missing labels in editflagtypes.cgi?action=edit - Patch by Frédéric Buclin <LpSolit@gmail.com> r=vladd a=LpSolit
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/admin/flag-type/edit.html.tmpl | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/template/en/default/admin/flag-type/edit.html.tmpl b/template/en/default/admin/flag-type/edit.html.tmpl index e78c83643..4e2edd5a4 100644 --- a/template/en/default/admin/flag-type/edit.html.tmpl +++ b/template/en/default/admin/flag-type/edit.html.tmpl @@ -148,16 +148,18 @@ <tr> <th> </th> <td> - <input type="checkbox" name="is_active" [% "checked" IF type.is_active || !type.is_active.defined %]> - active (flags of this type appear in the UI and can be set) + <input type="checkbox" id="is_active" name="is_active" + [% " checked" IF type.is_active || !type.is_active.defined %]> + <label for="is_active">active (flags of this type appear in the UI and can be set)</label> </td> </tr> <tr> <th> </th> <td> - <input type="checkbox" name="is_requestable" [% "checked" IF type.is_requestable || !type.is_requestable.defined %]> - requestable (users can ask for flags of this type to be set) + <input type="checkbox" id="is_requestable" name="is_requestable" + [% " checked" IF type.is_requestable || !type.is_requestable.defined %]> + <label for="is_requestable">requestable (users can ask for flags of this type to be set)</label> </td> </tr> @@ -179,16 +181,20 @@ <tr> <th> </th> <td> - <input type="checkbox" name="is_requesteeble" [% "checked" IF type.is_requesteeble || !type.is_requesteeble.defined %]> - specifically requestable (users can ask specific other users to set flags of this type as opposed to just asking the wind) + <input type="checkbox" id="is_requesteeble" name="is_requesteeble" + [% " checked" IF type.is_requesteeble || !type.is_requesteeble.defined %]> + <label for="is_requesteeble">specifically requestable (users can ask specific other users + to set flags of this type as opposed to just asking the wind)</label> </td> </tr> <tr> <th> </th> <td> - <input type="checkbox" name="is_multiplicable" [% "checked" IF type.is_multiplicable || !type.is_multiplicable.defined %]> - multiplicable (multiple flags of this type can be set on the same [% typeLabelLowerSingular %]) + <input type="checkbox" id="is_multiplicable" name="is_multiplicable" + [% " checked" IF type.is_multiplicable || !type.is_multiplicable.defined %]> + <label for="is_multiplicable">multiplicable (multiple flags of this type can be set on + the same [% typeLabelLowerSingular %])</label> </td> </tr> |