{% extends "django_program/manage/base.html" %} {% block title %}Edit Slot{% endblock %} {% block breadcrumb %} {% endblock %} {% block page_title %}

Edit Slot: {{ slot.display_title }}

{% endblock %} {% block content %} {% if is_synced %}
🔒 This slot was synced from Pretalx on {{ slot.synced_at|date:"N j, Y, P" }}. Synced fields are locked and cannot be edited here. Run a new sync to update Pretalx data.
{% endif %} {% if slot.talk %}

Linked Talk

{{ slot.talk.title }}
{% endif %}
{% csrf_token %} {% for field in form %}
{{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% if field.errors %}
    {% for error in field.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% if not is_synced %} {% endif %} {% if is_synced %}Back to Schedule{% else %}Cancel{% endif %}
{% endblock %}