diff --git a/app/templates/views/send.html b/app/templates/views/send.html
index b66dfb639..67da7501f 100644
--- a/app/templates/views/send.html
+++ b/app/templates/views/send.html
@@ -39,36 +39,30 @@
)}}
-
-
- See an example
-
+ Your file needs to look like this example
+
+ {% call(item, row_number) list_table(
+ example,
+ caption="Example",
+ caption_visible=False,
+ field_headings=[''] + column_headings
+ ) %}
+ {{ index_field(row_number - 1) }}
+ {% for column in item %}
+ {{ text_field(column) }}
+ {% endfor %}
+ {% endcall %}
+
+
+ Download this example
+
-
-
+
Accepted file formats
+
+ - .csv
+ - .tsv
+ - Open Document Spreadsheet (.ods)
+ - Microsoft Excel (.xls, .xlsx, .xlsm)
+
{% endblock %}