{% extends "base.html" %} {% block page_name %} All meetings - {{ summit.title }} {% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block sub_nav_links %}
  • Back to schedule
  • {% endblock %} {% block content %}
    {% for track, meetings in schedule.items %}

    {{ track.title }}

    {% for meeting in meetings %} {% endfor %}
    {{ meeting.title }}
    {{meeting.description}}
    {% if meeting.participant_set.count %}
    Participants:
    {% for participant in meeting.participant_set.all %}
    {% if participant.required %} (required) {% else %} attending {% endif %}{{ participant.attendee.user }}
    {% endfor %}
    {% endif %} {% if meeting.tracks.count > 0 %}
    Tracks:
      {% for track in meeting.tracks.all %}
    • {{ track.title }}
    • {% endfor %}
    {% endif %}
    {% endfor%}
    {% block closure %} {% endblock %} {% endblock %}