summaryrefslogtreecommitdiffstats
path: root/template/en/default/attachment/create.html.tmpl
diff options
context:
space:
mode:
authorgerv%gerv.net <>2002-07-28 04:10:18 +0200
committergerv%gerv.net <>2002-07-28 04:10:18 +0200
commita9bb18746686c1bf5497e27f7ac2e12d0e3fc31a (patch)
tree1bca04e24670909e5540c9bbc6b6d15a327f2eda /template/en/default/attachment/create.html.tmpl
parent08b10c0477d0ee96aa4a509781344cd8e5c53808 (diff)
downloadbugzilla-a9bb18746686c1bf5497e27f7ac2e12d0e3fc31a.tar.gz
bugzilla-a9bb18746686c1bf5497e27f7ac2e12d0e3fc31a.tar.xz
Bug 159687 - attachment/*.tmpl should use <label>. Patch by burnus; r=gerv.
Diffstat (limited to 'template/en/default/attachment/create.html.tmpl')
-rw-r--r--template/en/default/attachment/create.html.tmpl26
1 files changed, 18 insertions, 8 deletions
diff --git a/template/en/default/attachment/create.html.tmpl b/template/en/default/attachment/create.html.tmpl
index 15f2e9e22..86d418525 100644
--- a/template/en/default/attachment/create.html.tmpl
+++ b/template/en/default/attachment/create.html.tmpl
@@ -63,17 +63,26 @@
<th>Content Type:</th>
<td>
<em>If the attachment is a patch, check the box below.</em><br>
- <input type="checkbox" name="ispatch" value="1" onchange="setContentTypeDisabledState();"> patch<br><br>
+ <input type="checkbox" id="ispatch" name="ispatch" value="1"
+ onchange="setContentTypeDisabledState();">
+ <label for="ispatch">patch</label><br><br>
<em>Otherwise, choose a method for determining the content type.</em><br>
- <input type="radio" name="contenttypemethod" value="autodetect">
- auto-detect<br>
- <input type="radio" name="contenttypemethod" value="list">
- select from list: <select name="contenttypeselection" onchange="this.form.contenttypemethod[1].checked = true;">
+ <input type="radio" id="autodetect"
+ name="contenttypemethod" value="autodetect">
+ <label for="autodetect">auto-detect</label><br>
+ <input type="radio" id="list"
+ name="contenttypemethod" value="list">
+ <label for="list">select from list:</label>
+ <select name="contenttypeselection"
+ onchange="this.form.contenttypemethod[1].checked = true;">
[% PROCESS "attachment/content-types.html.tmpl" %]
</select><br>
- <input type="radio" name="contenttypemethod" value="manual">
- enter manually: <input type="text" name="contenttypeentry" size="30" maxlength="200" onchange="if (this.value) this.form.contenttypemethod[2].checked = true;">
+ <input type="radio" id="manual"
+ name="contenttypemethod" value="manual">
+ <label for="manual">enter manually:</label>
+ <input type="text" name="contenttypeentry" size="30" maxlength="200"
+ onchange="if (this.value) this.form.contenttypemethod[2].checked = true;">
</td>
</tr>
<tr>
@@ -82,7 +91,8 @@
<em>(optional) Check each existing attachment made obsolete by your new attachment.</em><br>
[% IF attachments.size %]
[% FOREACH attachment = attachments %]
- <input type="checkbox" name="obsolete" value="[% attachment.id %]">
+ <input type="checkbox" id="[% attachment.id %]"
+ name="obsolete" value="[% attachment.id %]">
<a href="attachment.cgi?id=[% attachment.id %]&amp;action=edit">[% attachment.id %]: [% attachment.description FILTER html %]</a><br>
[% END %]
[% ELSE %]