{% extends "django_program/manage/base.html" %} {% block title %}{{ activity.name }} - Attendees{% endblock %} {% block breadcrumbs %} Dashboard › Activities › {{ activity.name }} › Attendees {% endblock %} {% block page_title %}
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 %}| Attendee | 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. {% endif %} |
No signups with status "{{ current_status }}".
{% else %}No signups for this activity yet.
{% endif %}