{% extends "base.html" %} {% load datetime qrcode %} {% block page_name %} {{ room.title }} Schedule - {{ summit.title }} {% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block sub_nav_links %}
  • Mobile
  • {% endblock %} {% block content %}
    {% if summit.qr %} {{summit.qr|qrcode}} {% else %} {{summit.get_absolute_url|qrcode}} {% endif %} {{ room.title }}

    {% for slot, meetings in schedule.items %} {% for room, agenda in meetings.items %} {% endfor %}
    {{slot.start|strftime:"%A, %H:%M"}} - {{slot.end|strftime:"%H:%M"}} {{summit.start|strftime:"%Z"}}
    {% if attendee in agenda.meeting.attendees %} Attending {% else %} Not Attending {% endif %} {{agenda.meeting.title}} {% if agenda.meeting.tracks.count > 0 %} ({% for track in agenda.meeting.tracks.all %} {% ifnotequal forloop.counter 1 %}, {% endifnotequal %}{{ track.title }} {% endfor %}) {% endif %}
    {{agenda.meeting.description}}
    {% if agenda.meeting.participant_set.count %}
    Participants:
    {% for participant in agenda.meeting.participant_set.all %}
    {% if participant.required %} (required) {% else %} attending {% endif %}{{ participant.attendee.user }}
    {% endfor %}
    {% endif %} {% if agenda.meeting.tracks.count > 0 %}
    Tracks:
      {% for track in agenda.meeting.tracks.all %}
    • {{ track.title }}
    • {% endfor %}
    {% endif %}
    {{agenda.room.title}} {% if agenda.room.icecast_url %} (Audio Feed) {% endif %} {% if agenda.room.irc_channel %} (IRC Channel) {% endif %}
    {% endfor %}
    {% include "schedule/actions.html" %}
    {% block closure %} {% endblock %} {% endblock %}