{% extends "base.html" %} {% load staticfiles %} {% block container %}
{% csrf_token %}

Challenges


{% if challenge_proposals.count > 0 %} {% for c in challenge_proposals %}

{{ c.title }}

{% endfor %} {% else %}

There are no challenges proposals

{% endif %}

Workshops


{% if workshop_proposals.count > 0 %} {% for w in workshop_proposals %}

{{ w.title }}

{% endfor %} {% else %}

There are no workshops proposals

{% endif %}

Special issues


{% if issue_proposals.count > 0 %} {% for s in issue_proposals %}

{{ s.title }}

{% endfor %} {% else %}

There are no special issues proposals

{% endif %}
{% endblock container %}