{% extends "attendeereg/base.html" %} {% block content %} {% load adminmedia %}{% load attendeereg %}

{{ title|escape }}


There are {{ total }} active registrations with {{ pending }} pending.
The ID column has links to the admin. Click the Active and Pending counts to show/hide the registrations.

{% for session in sessions %}

{{ session.name }}

{% for tutorial in session.tutorials %} {% if tutorial.active_attendees.count %}{% endif %} {% if tutorial.pending_attendees.count %}{% endif %} {% endfor %}
ActivePendingStatus IDTutorial
{% if tutorial.active_attendees.count %}{{ tutorial.active_attendees.count }}{% else %}0{% endif %} {% if tutorial.pending_attendees.count %}{{ tutorial.pending_attendees.count }}{% else %}0{% endif %} {{ tutorial.get_status_display|escape }} {{ tutorial.name|escape }} {% if tutorial.pageurl %}{{ tutorial.title|split_on_paren|first|escape }} {{ tutorial.title|split_on_paren|last|escape }}{% else %}{{ tutorial.title|escape }}{% endif %}


{% endfor %} {% endblock %}