{% extends "django_program/pretalx/base.html" %} {% block title %}{{ activity.name }}{% endblock %} {% block content %} Back to programs
| 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" }} |
You are signed up for this activity.
{% elif user_signup and user_signup.is_waitlisted %}You are on the waitlist for this activity.
{% elif spots_remaining is not None and spots_remaining <= 0 %}This activity is full. You can join the waitlist.
{% else %} {% endif %}