{% extends "orga/base.html" %} {% load i18n %} {% load static %} {% block extra_title %}{% translate "Export speaker data" %} :: {% endblock extra_title %} {% block content %}

{% translate "Export speaker data" %}

{% include "orga/includes/tablist.html" %}

{% blocktranslate trimmed %} Build your own custom export here, by selecting all the data you need, and the export format. CSV exports can be opened with Excel and similar applications, while JSON exports are often used for integration with other tools. {% endblocktranslate %}

{% csrf_token %}
{% translate "Dataset" %} {{ form.target.as_field_group }}
{% translate "Data fields" %}
{% for field in form.export_fields %} {{ field.as_field_group }} {% endfor %}
{% translate "Export settings" %} {{ form.export_format.as_field_group }}
{{ form.data_delimiter.as_field_group }}
{% include "orga/includes/submit_row.html" %}
{% endblock content %}