diff --git a/app/assets/stylesheets/app.scss b/app/assets/stylesheets/app.scss
index a0409dff2..b47b576be 100644
--- a/app/assets/stylesheets/app.scss
+++ b/app/assets/stylesheets/app.scss
@@ -61,11 +61,11 @@ a {
}
> .grid-row {
-
+
.heading-large {
margin-top: $gutter;
}
-
+
}
}
@@ -104,7 +104,7 @@ td {
#footer {
.footer-categories {
-
+
@extend %site-width-container;
&-wrapper {
@@ -148,3 +148,8 @@ a[rel='external'] {
}
}
+
+details summary {
+ text-decoration: underline;
+ margin-bottom: $gutter-half;
+}
diff --git a/app/templates/views/send.html b/app/templates/views/send.html
index e296460a4..0232824ed 100644
--- a/app/templates/views/send.html
+++ b/app/templates/views/send.html
@@ -35,44 +35,48 @@
-
- Example file
-
+
+ How to format your file
- {% call(item, row_number) list_table(
- example,
- caption="Example",
- caption_visible=False,
- field_headings=['1'] + [
- '{}'.format(recipient_column)|safe
- ] + template.placeholders_as_markup|list
- ) %}
- {{ index_field(row_number) }}
- {% for column in item %}
- {{ text_field(column) }}
- {% endfor %}
- {% endcall %}
+
+ -
+ put one recipient per row
+
+ -
+ save or export your data as a
+ CSV,
+ TSV,
+ Open Document Spreadsheet (.ods)
+ or Microsoft Excel (.xls, .xlsx, .xlsm) file
+
+
-
- Download this example
-
+
+ Example file
+
-
- Formatting
-
-
- -
- put one recipient per row
-
- -
- save or export your data as a .csv (comma separated values) file
-
-
+ {% call(item, row_number) list_table(
+ example,
+ caption="Example",
+ caption_visible=False,
+ field_headings=['1'] + [
+ '{}'.format(recipient_column)|safe
+ ] + template.placeholders_as_markup|list
+ ) %}
+ {{ index_field(row_number) }}
+ {% for column in item %}
+ {{ text_field(column) }}
+ {% endfor %}
+ {% endcall %}
+
+ Download this example
+
+
{% endblock %}