{% extends "teleforma/courses.html" %} {% load i18n %} {% block extra_javascript %} {% endblock extra_javascript %} {% block courses %} {% for c in all_courses %} {% with c.course as course %}
  • {{ course.title }}
  • {% endwith %} {% endfor %} {% endblock courses %} {% block course %}
    {% for c in courses %} {% with c.course as course %} {% for type in c.types %}
    {{ course.title }} - {{ type }}{% if course.description %} - {{ course.description }}{% endif %}
    {% block conference %} {% include "teleforma/inc/conference_list.html" %} {% endblock %} {% block media %} {% include "teleforma/inc/media_list.html" %} {% endblock %} {% block document %} {% with forloop.counter as type_counter %} {% include "teleforma/inc/document_list.html" %} {% endwith %} {% endblock %}
    {% endfor %} {% endwith %} {% endfor %}
    {% endblock course %} {% block chat %} {% if room %} {% with "Local tweeter" as title %} {% include "teleforma/inc/chat_room.html" %} {% endwith %} {% endif %} {% endblock chat %}