{% extends "django_program/pretalx/base.html" %} {% block title %}Programs{% endblock %} {% block content %}
All {% for value, label in activity_types %} {{ label }} {% endfor %}
{% for activity in activities %}
{{ activity.get_activity_type_display }} {% if activity.talk_count %} {{ activity.talk_count }} talk{{ activity.talk_count|pluralize }} {% endif %}
{{ activity.name }}
{% if activity.description %}

{{ activity.description|truncatewords:30 }}

{% endif %}
{% if activity.start_time %} {{ activity.start_time|date:"M j, g:i A" }} {% endif %} {% if activity.room %} {{ activity.room.name }} {% elif activity.location %} {{ activity.location }} {% endif %}
{% if activity.max_participants %}
{% with filled=activity.signup_count total=activity.max_participants %}
{{ filled }} / {{ total }} signed up {% with remaining=total|add:"-"|add:filled|default:0 %} {% endwith %}
{% endwith %}
{% endif %}
{% empty %}

No activities yet.

{% endfor %}
{% endblock %}