Permalink
Fetching contributors…
Cannot retrieve contributors at this time. Cannot retrieve contributors at this time
21 lines (20 sloc) 447 Bytes
{% extends 'wafer/base.html' %}
{% load i18n %}
{% load crispy_forms_tags %}
{% block content %}
<section class="wafer wafer-talk-edit">
{% if can_edit %}
<h1>{% trans "Edit Talk" %}</h1>
{% else %}
<h1>{% trans "Talk Submission" %}</h1>
{% endif %}
{% if not can_edit and not can_submit %}
{% blocktrans %}
<em>Talk submission is closed</em>
{% endblocktrans %}
{% else %}
{{ form.media }}
{% crispy form %}
{% endif %}
</section>
{% endblock %}