Commit 33a40e24 authored by Tres Seaver's avatar Tres Seaver

LP #143444: add labels to checkboxes / radio buttons on import / export form.

parent 31d4a7c2
......@@ -57,7 +57,10 @@ Features Added
Bugs Fixed
++++++++++
- LP #496961: Remove all mention of ``standard_html_header`` and
- LP #143444: add labels to checkboxes / radio buttons on import /
export form.
- LP #496941: Remove all mention of ``standard_html_header`` and
``standard_html_footer`` from default DTML content.
- Fixed a regression in Products.PageTemplates that meant filesystem templates
......
......@@ -42,11 +42,15 @@ at your own risk.
</td>
<td align="left" valign="top">
<div class="form-text">
<input type="radio" name="download:int" value="1" />
<label for="download_local">
<input type="radio" name="download:int" value="1" id="download_local" />
Download to local machine
</label>
<br />
<input type="radio" name="download:int" value="0" checked />
<label for="download_server">
<input type="radio" name="download:int" value="0" id="download_server" checked />
Save to file on server
</label>
</div>
</td>
</tr>
......@@ -57,7 +61,11 @@ at your own risk.
</td>
<td align="left" valign="top">
<div class="form-text">
<input type="checkbox" name="toxml" value="Y" /> XML format? (unsupported, see above)
<label for="toxml">
<input type="checkbox" id="toxml" name="toxml" value="Y" />
XML format?
</label>
<em>(unsupported, see above)</em>
</div>
</td>
</tr>
......@@ -115,11 +123,15 @@ ownership information".
</td>
<td align="left" valign="top">
<div class="form-text">
<input type="radio" name="set_owner:int" value="1" checked />
<label for="owner_take">
<input type="radio" name="set_owner:int" value="1" id="owner_take" checked />
Take ownership of imported objects
</label>
<br />
<input type="radio" name="set_owner:int" value="0" />
<label for="owner_retain">
<input type="radio" name="set_owner:int" value="0" id="owner_retain" />
Retain existing ownership information
</label>
</div>
</td>
</tr>
......@@ -136,10 +148,3 @@ ownership information".
<dtml-var manage_page_footer>
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