{% extends "orga/cfp/base.html" %} {% load bootstrap4 %} {% load i18n %} {% load static %} {% block content %}

{% translate "Export review data" %}

{% 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" %} {% bootstrap_field form.target layout='event' %}
{% translate "Data fields" %}
{% for field in form.export_fields %} {% bootstrap_field field layout='event' %} {% endfor %}
{% translate "Export settings" %} {% bootstrap_field form.export_format layout='event' %}
{% include "orga/includes/submit_row.html" %}

{% 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.api_urls.reviews.full }} 
{% endblock %}