{% extends 'wafer/base.html' %}
{% load crispy_forms_tags %}
{% block content %}
{% if can_edit %}
{% trans "Edit Talk" %}
{% else %}
{% trans "Talk Submission" %}
{% endif %}
{% if not can_edit and not can_submit %}
{% blocktrans %}
Talk submission is closed
{% endblocktrans %}
{% else %}
{{ form.media }}
{% crispy form %}
{% endif %}
{% endblock %}