{% include "proposals/_talk_list.html" with talk_list=my_talks %}
{% endif %}
{% if proposed_talks %}
{% trans "Proposed talks for others speakers:" %}
{% include "proposals/_talk_list.html" with talk_list=proposed_talks %}
{% endif %}
{% if conference.cfp_is_open %}
{% trans "The Call for Participation is currently open for following categories:" %}
{% for event in conference.opened_events.all %}
{% if forloop.first %}
{% endif %}
{{ event }}{% if event.closing_date %} ({% blocktrans with closing_date=event.closing_date|date:"DATETIME_FORMAT" %}until {{ closing_date }}{% endblocktrans %}){% endif %}
{% if forloop.last %}
{% endif %}
{% endfor %}
{% trans "Propose a talk" %}
{% else %}
{% trans "Sorry, the Call for Participation is closed." %}
{% endif %}
{% endblock %}