{% extends 'base.html' %} {% load accounts_tags i18n %} {% block exhibitortab %} class="active"{% endblock %} {% block content %}

{% trans "Participate" %}

{% if my_talks %}

{% trans "My talks:" %}

{% 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 %} {% endfor %}
{% trans "Propose a talk" %} {% else %} {% trans "Sorry, the Call for Participation is closed." %} {% endif %} {% endblock %}