{% extends 'wafer/base_form.html' %} {% load i18n %} {% load crispy_forms_tags %} {% load static from staticfiles %} {% 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 %} {% crispy form %} {% endif %} {% endblock %} {% block extra_foot %} {{ block.super }} {% endblock %}
Submitted by {{ corresponding_author_name }}.