Merge pull request #640 from alphagov/better-wording-around-example

Change wording around the example on the send page
This commit is contained in:
Chris Hill-Scott
2016-06-03 12:45:54 +01:00

View File

@@ -43,26 +43,10 @@
<details role="group"> <details role="group">
<summary role="button" aria-controls="how-to-format-your-file" aria-expanded="false"> <summary role="button" aria-controls="how-to-format-your-file" aria-expanded="false">
<span class="summary">How to format your file</span> <span class="summary">See an example</span>
</summary> </summary>
<div id="how-to-format-your-file" aria-hidden="true"> <div id="how-to-format-your-file" aria-hidden="true">
<ul class="list list-bullet">
<li>
put one recipient per row
</li>
<li>
save or export your data as a
<acronym title="Comma Separated Values">CSV</acronym>,
<acronym title="Comma Separated Values">TSV</acronym>,
Open Document Spreadsheet (.ods)
or Microsoft Excel (.xls, .xlsx, .xlsm) file
</li>
</ul>
<h2 class="heading-small">
Example file
</h2>
<div class="spreadsheet"> <div class="spreadsheet">
{% call(item, row_number) list_table( {% call(item, row_number) list_table(
example, example,
@@ -79,6 +63,13 @@
<p class="table-show-more-link"> <p class="table-show-more-link">
<a href="{{ url_for('.get_example_csv', service_id=current_service.id, template_id=template.id) }}">Download this example</a> <a href="{{ url_for('.get_example_csv', service_id=current_service.id, template_id=template.id) }}">Download this example</a>
</p> </p>
<p>Save the file as</p>
<ul class="list list-bullet">
<li>.<acronym title="Comma Separated Values">csv</acronym></li>
<li>.<acronym title="Comma Separated Values">tsv</acronym></li>
<li>Open Document Spreadsheet (.ods)</li>
<li>or Microsoft Excel (.xls, .xlsx, .xlsm)</li>
</p>
</div> </div>
</details> </details>