PonyConf/proposals/templates/proposals/participate.html
2016-09-24 18:25:05 +02:00

31 lines
831 B
HTML

{% extends 'base.html' %}
{% load i18n %}
{% block participatetab %} class="active"{% endblock %}
{% block content %}
<h1>{% trans "Participate" %}</h1>
{% if my_talks %}
<h2>{% trans "My talks:" %}</h2>
{% include "proposals/_talk_list.html" with talk_list=my_talks %}
{% endif %}
{% if proposed_talks %}
<h2>{% trans "Proposed talks for others speakers:" %}</h2>
{% include "proposals/_talk_list.html" with talk_list=proposed_talks %}
{% endif %}
<br />
{% if conf.cfp == conf.CFP_FORTHCOMING %}
<em>{% trans "The Call for Participation is not yet open." %}</em>
{% elif conf.cfp == conf.CFP_OPEN %}
<a class="btn btn-success" href="{% url 'add-talk' %}">{% trans "Propose a talk" %}</a>
{% elif conf.cfp == conf.CFP_COMPLETED %}
<em>{% trans "The Call for Participation is completed." %}</em>
{% endif %}
{% endblock %}