{% extends "django_program/pretalx/base.html" %} {% block title %}{{ activity.name }}{% endblock %} {% block content %} Back to programs {% if activity.description %}

Description

{{ activity.description|linebreaks }}
{% endif %} {% if activity.external_url %}

More details →

{% endif %} {% if linked_talks %}

Talks ({{ linked_talks|length }})

{% for day, day_talks in schedule_by_day %}
{{ day|date:"l, M j" }} {{ day_talks|length }} session{{ day_talks|length|pluralize }} {% for talk in day_talks %} {% endfor %}
Time Talk Speaker(s) Room
{% if talk.slot_start %}{{ talk.slot_start|date:"g:i A" }}{% endif %} {% if talk.slot_end %}– {{ talk.slot_end|date:"g:i A" }}{% endif %} {{ talk.title }} {% for speaker in talk.speakers.all %} {{ speaker.name }}{% if not forloop.last %}, {% endif %} {% endfor %} {{ talk.room.name|default:"TBD" }}
{% endfor %} {% for talk in linked_talks %} {% if not talk.slot_start and forloop.first %}

Unscheduled

{% endif %} {% endfor %}
{% endif %} {% if speakers %}

Speakers ({{ speakers|length }})

{% endif %} {% if user.is_authenticated %}

Sign Up

{% if user_signup and user_signup.is_confirmed %}

You are signed up for this activity.

{% csrf_token %}
{% elif user_signup and user_signup.is_waitlisted %}

You are on the waitlist for this activity.

{% csrf_token %}
{% elif spots_remaining is not None and spots_remaining <= 0 %}

This activity is full. You can join the waitlist.

{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %}
{% endif %} {% if signups %}

Signed Up ({{ signups|length }})

{% for signup in signups %} {{ signup.user }} {% endfor %}
{% endif %} {% endblock %}