{% extends "base.html" %} {% block page_name %} Review Proposed Meetings - {{ summit.title }} {% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block sub_nav %} {% 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 %}
Status: {{ meeting.get_approved_display }}
{% endfor%}
{% block closure %} {% endblock %} {% endblock %}