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

Edit Talk: {{ talk.title }}

{% endblock %} {% block content %} {% if is_synced %}
🔒 This talk was synced from Pretalx on {{ talk.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 talk.speakers.exists %}

Speakers

{% for speaker in talk.speakers.all %} {{ speaker.name }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %}
{% csrf_token %} {% for field in form %} {% if field.name != 'speakers' %}
{{ field }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% if field.errors %}
    {% for error in field.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{% endif %} {% endfor %}
{% if not is_synced %} {% endif %} {% if is_synced %}Back to Talks{% else %}Cancel{% endif %}
{% endblock %}