{% extends "django_program/manage/base.html" %} {% block title %}Activities{% endblock %} {% block page_title %}

Activities

Sprints, workshops, social events, and more

{% endblock %} {% block page_actions %} Add Activity {% endblock %} {% block content %} {% if activities %} {% for activity in activities %} {% endfor %}
Name Type Start Time Location Signups Status Actions
{{ activity.name }} {{ activity.get_activity_type_display }} {{ activity.start_time|default:"--" }} {% if activity.room %}{{ activity.room.name }}{% elif activity.location %}{{ activity.location }}{% else %}--{% endif %} {{ activity.signup_count }}{% if activity.max_participants %} / {{ activity.max_participants }}{% endif %} {% if activity.waitlist_count %}
{{ activity.waitlist_count }} waitlisted{% endif %}
{% if activity.is_active %} Active {% else %} Inactive {% endif %} {% if activity.synced_at %} Synced {% endif %} Dashboard Edit
{% else %}

No activities for this conference yet.

Add First Activity

{% endif %} {% endblock %}