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

21 lines
434 B
HTML
Raw Normal View History

2017-08-02 17:34:07 +00:00
{% extends 'cfp/staff/base.html' %}
{% load i18n crispy_forms_tags %}
{% block talkstab %} class="active"{% endblock %}
{% block content %}
2017-11-09 22:45:10 +00:00
<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>
2017-08-02 17:34:07 +00:00
2017-09-27 19:53:35 +00:00
{% include '_form.html' with multipart=True %}
2017-08-02 17:34:07 +00:00
{% endblock %}