Commit bbedda27 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 362813: Missing labels in editflagtypes.cgi?action=edit - Patch by…

Bug 362813: Missing labels in editflagtypes.cgi?action=edit - Patch by Fré©ric Buclin <LpSolit@gmail.com> r=vladd a=LpSolit
parent 6e56a927
...@@ -148,16 +148,18 @@ ...@@ -148,16 +148,18 @@
<tr> <tr>
<th>&nbsp;</th> <th>&nbsp;</th>
<td> <td>
<input type="checkbox" name="is_active" [% "checked" IF type.is_active || !type.is_active.defined %]> <input type="checkbox" id="is_active" name="is_active"
active (flags of this type appear in the UI and can be set) [% " 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> </td>
</tr> </tr>
<tr> <tr>
<th>&nbsp;</th> <th>&nbsp;</th>
<td> <td>
<input type="checkbox" name="is_requestable" [% "checked" IF type.is_requestable || !type.is_requestable.defined %]> <input type="checkbox" id="is_requestable" name="is_requestable"
requestable (users can ask for flags of this type to be set) [% " 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> </td>
</tr> </tr>
...@@ -179,16 +181,20 @@ ...@@ -179,16 +181,20 @@
<tr> <tr>
<th>&nbsp;</th> <th>&nbsp;</th>
<td> <td>
<input type="checkbox" name="is_requesteeble" [% "checked" IF type.is_requesteeble || !type.is_requesteeble.defined %]> <input type="checkbox" id="is_requesteeble" name="is_requesteeble"
specifically requestable (users can ask specific other users to set flags of this type as opposed to just asking the wind) [% " 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> </td>
</tr> </tr>
<tr> <tr>
<th>&nbsp;</th> <th>&nbsp;</th>
<td> <td>
<input type="checkbox" name="is_multiplicable" [% "checked" IF type.is_multiplicable || !type.is_multiplicable.defined %]> <input type="checkbox" id="is_multiplicable" name="is_multiplicable"
multiplicable (multiple flags of this type can be set on the same [% typeLabelLowerSingular %]) [% " 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> </td>
</tr> </tr>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment