{% extends 'frontend_base.html' %} {% set active_page = 'sessions' %} {% set is_site_admin = security.AdminSiteRequirement().can() %} {% block styles %} {{ super() }} {% endblock styles %} {% block scripts %} {{ super() }} {% if is_admin %} {# TODO: These standard scripts will be included higher up in the inheritance #} {% endif %} {% endblock scripts %} {% block content %} {{ super() }}
{% for (collection, can_admin_collection, sessions) in all_sessions %}

{{ collection.label }}

{% if can_admin_collection %}
{% endif %}
{% for session, can_admin in sessions %} {% if can_admin %} {% endif %} {% endfor %}
{{ session.label }}

{% endfor %}
{% endblock content %}