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

31 lines
572 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" %}
2017-11-25 21:41:21 +00:00
{% url 'talk-details' talk.pk as cancel_url %}
2017-11-09 22:45:10 +00:00
{% else %}
{% trans "Add a talk" %}
2017-11-25 21:41:21 +00:00
{% url 'participant-details' participant.pk as cancel_url %}
2017-11-09 22:45:10 +00:00
{% 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 %}
{% block js_end %}
{{ block.super }}
{{ form.media.js }}
{% endblock %}
{% block css %}
{{ block.super }}
{{ form.media.css }}
{% endblock %}