{% extends "django_program/manage/base.html" %} {% block title %}{{ activity.name }} - Attendees{% endblock %} {% block breadcrumbs %} DashboardActivities › {{ activity.name }} › Attendees {% endblock %} {% block page_title %}

{{ activity.name }}

Manage attendees and signups

{% endblock %} {% block page_actions %} Export CSV {% if user.is_superuser or perms.program_conference.change_conference %} Edit Activity {% endif %} {% endblock %} {% block content %}
{{ signup_stats.total_active }}
Total Active
{{ signup_stats.confirmed }}
Confirmed
{{ signup_stats.waitlisted }}
Waitlisted
{% if spots_remaining is not None %}{{ spots_remaining }}{% else %}∞{% endif %}
Spots Remaining
{% if current_status %} Clear filter {% endif %}
{% if signups %} {% for signup in signups %} {% endfor %}
Attendee Email Status Note Signed Up Actions
{{ signup.user.get_full_name|default:signup.user.username }} {{ signup.user.email|default:"--" }} {% if signup.status == "confirmed" %} Confirmed {% elif signup.status == "waitlisted" %} Waitlisted {% elif signup.status == "cancelled" %} Cancelled {% endif %} {{ signup.note|default:"--" }} {{ signup.created_at|date:"N j, Y H:i" }} {% if signup.status == "waitlisted" %}

Manual promotion can overbook this activity.

{% csrf_token %}
{% endif %}
{% include "django_program/manage/_pagination.html" %} {% else %}
{% if current_status %}

No signups with status "{{ current_status }}".

Show all active

{% else %}

No signups for this activity yet.

{% endif %}
{% endif %} {% endblock %}