Make the file type info take less space

It doesn’t need to be a bullet point for each format. We tested this in
research with DWP staff yesterday and it didn’t cause any problems. I
also think it’s nicer for the UI to tell you what you need to do, rather
than tell you what it can “accept”.
This commit is contained in:
Chris Hill-Scott
2017-05-11 12:19:38 +01:00
parent d440f38646
commit 5d0904ca36

View File

@@ -21,6 +21,13 @@
</div>
<h2 class="heading-medium">Your file needs to look like this example</h2>
<p class="hint">
Save your file as a
<acronym title="Comma Separated Values">CSV</acronym>,
<acronym title="Tab Separated Values">TSV</acronym>,
<acronym title="Open Document Spreadsheet">ODS</acronym>,
or Microsoft Excel spreadsheet
</p>
<div class="spreadsheet">
{% call(item, row_number) list_table(
example,
@@ -38,12 +45,4 @@
<a href="{{ url_for('.get_example_csv', service_id=current_service.id, template_id=template.id) }}">Download this example</a>
</p>
<h2 class="heading-medium">Accepted file formats</h2>
<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>Microsoft Excel (.xls, .xlsx, .xlsm)</li>
</p>
{% endblock %}