{% extends "django_program/manage/base.html" %} {% block title %}Import from Pretalx{% endblock %} {% block page_title %}

Import from Pretalx

Bootstrap a new conference by importing event data from Pretalx

{% endblock %} {% block page_actions %} Cancel {% endblock %} {% block content %}

Enter a Pretalx event slug to fetch event metadata (name, dates, timezone) and automatically sync rooms, speakers, talks, and the schedule.

{% if has_configured_token %}

A Pretalx API token is configured in settings. You can override it below if needed.

{% else %}

No Pretalx API token configured. Provide one below if the event requires authentication.

{% endif %}
{% csrf_token %} {% for field in form %}
{% if field.help_text %}

{{ field.help_text }}

{% endif %} {% if field.errors %}
    {% for error in field.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% endfor %}
This may take a moment for large events
{% endblock %}