{% extends "cfp/event/base.html" %} {% load i18n %} {% load rich_text %} {% block title %}{% translate "Accept invitation?" %}{% endblock title %} {% block content %}

{% translate "Accept invitation?" %}

{% if not can_accept_invite %}

{% blocktranslate trimmed %} Unfortunately, you cannot accept this invitation at the moment. This may be because the invitation has expired, or because the proposal cannot be edited any more. {% endblocktranslate %}

{% blocktranslate trimmed %} Please contact the conference organizers for more information. {% endblocktranslate %}

{% else %}

{% blocktranslate with name=request.user.get_display_name talk=submission.title trimmed %} You, {{ name }}, have been invited to be a speaker for the session “{{ talk }}”. Do you accept the invitation? {% endblocktranslate %}

{% if submission.abstract %}
{% translate "Abstract:" %} {{ submission.title }}

{{ submission.abstract|rich_text }}

{% endif %}
{% csrf_token %}
{% endif %} {% endblock content %}