PonyConf/cfp/templates/cfp/staff/talk_form.html

21 lines
434 B
HTML

{% extends 'cfp/staff/base.html' %}
{% load i18n crispy_forms_tags %}
{% block talkstab %} class="active"{% endblock %}
{% block content %}
<h1>
{% if talk %}
{% trans "Edit a talk" %}
{% url 'talk-details' talk.token as cancel_url %}
{% else %}
{% trans "Add a talk" %}
{% url 'participant-details' participant.token as cancel_url %}
{% endif %}
</h1>
{% include '_form.html' with multipart=True %}
{% endblock %}