{% extends "orga/schedule/base.html" %} {% load i18n %} {% load bootstrap4 %} {% load static %} {% block schedule_content %}

{% translate "Export schedule data" %}

{% csrf_token %}
{% translate "Export settings" %} {% bootstrap_field form.export_format layout='event' %}
{% bootstrap_field form.data_delimiter layout='event' %}
{% translate "Dataset" %} {% bootstrap_field form.target layout='event' %}
{% translate "Data fields" %}
{% for field in form.export_fields %} {% bootstrap_field field layout='event' %} {% endfor %}
{% include "orga/submit_row.html" %}
{% blocktranslate trimmed %} pretalx provides a range of exports. If none of these match what you are looking for, you can also provide a custom plugin to export the data – please ask your administrator to install the plugin. {% endblocktranslate %} {% blocktranslate trimmed %} If you are looking for exports of proposals, sessions or schedule data, please head here: {% endblocktranslate %} {% translate "Speaker exports" %} {% if not request.event.current_schedule %}
{% blocktranslate trimmed %} You haven't released a schedule yet – many of these data exporters only work on a released schedule. {% endblocktranslate %}
{% endif %}

{% translate "HTML Export" %}

{% blocktranslate trimmed %} The event schedule can be exported to a static HTML dump, so you can upload it to a normal file-serving web server like nginx. This is done automatically on schedule release, but you can also trigger that action here. {% endblocktranslate %}

{% translate "Download ZIP" %}
{% csrf_token %}

{% translate "API" %}

{% translate "You can also use the API to export or use data." %}

{% blocktranslate trimmed %} Some of the general exports are only accessible for organisers, or include more information when accessed with your organiser account. If you want to access the organiser version in automatic integrations, you'll have to provide your authentication token just like in the API, like this: {% endblocktranslate %}

 curl -H "Authorization: Token {{ request.user.auth_token.key }}" {{ request.event.urls.frab_xml.full }}
 curl -H "Authorization: Token {{ request.user.auth_token.key }}" {{ request.event.api_urls.submissions.full }} 
{% endblock %}