{% extends 'wafer/base.html' %} {% load i18n %} {% load crispy_forms_tags %} {% block content %}
{% if can_edit %}

{% trans "Edit Talk" %}

{% with corresponding_author_name=object.corresponding_author.userprofile.display_name %} {% url 'wafer_user_profile' username=object.corresponding_author.username as corresponding_author_url %} {% blocktrans %}

Submitted by {{ corresponding_author_name }}.

{% endblocktrans %} {% endwith %} {% 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 %}