{% extends "base.html" %} {% load datetime qrcode %} {% block page_name %} {{ viewdate|strftime:"%Y-%m-%d" }} Schedule - {{ summit.title }} {% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block sub_nav_links %} {% if ical %}
  • iCal Feed
  • {% endif %}
  • Mobile
  • Wide display
  • {% endblock %} {% block content %}
    {% if summit.qr %} {{summit.qr|qrcode}} {% else %} {{summit.get_absolute_url|qrcode}} {% endif %} < {{ viewdate.date|strftime:"%A" }} > {% if schedule.crew %} Crew: {% for c in crew %}{{c.attendee.name}}{% if forloop.last %}{% else %}, {% endif %}{% endfor %} {% endif %}
    {% for slot, meetings in schedule.items %} {% if slot.type == 'lunch' %} {% else %} {% for room, agenda in meetings.items %} {% endfor %} {% endif %}
    {{slot.start.time|strftime:"%H:%M"}} - {{slot.end.time|strftime:"%H:%M"}} {{summit.start|strftime:"%Z"}} {% ifequal slot.type 'plenary' %}[PLENARY]{% endifequal %}
    Lunch
    {% 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 %}
    < {{ viewdate.date|strftime:"%A" }} >
    {% include "schedule/actions.html" %}
    {% block closure %} {% endblock %} {% endblock %}