{% extends "base.html" %} {% load datetime %} {% block page_name %} {{ meeting.title }} - {% if schedule.date %}{{ schedule.date|strftime:"%Y-%m-%d" }}{% endif %} {% if schedule.room %}{{ schedule.room.title }} - {{ summit.title }}{% endif %} {% endblock %} {% block extrahead %}{{ block.super }} {% if meeting.description %} {% endif %} {% endblock %} {% block sub_nav_links %} {% if meeting.private %} {% if meeting.private_key and meeting.private_key != '' %} Shared URL {% else %} Share Meeting {% endif %} Edit Meeting {% endif %} {% if user_is_attending %} {% if user_is_participating %} Skip this meeting {% endif %} {% else %} {% if meeting.spec_url %} Subscribe to Blueprint {% endif %} Attend this meeting {% endif %} {% endblock %} {% block content %}

{{ meeting.title }}

{% for ai in agenda_items %}

{{ ai.slot }} in {{ ai.room.name }}

{% endfor %}
{{ meeting.description }}
{% if meeting.private %} {% else %}
submit to reddit
{% endif %} {% if meeting.private %}

WARNING: Contents of this pad may not be private, and may be searcheable by non-attendees!

{% endif %} {% ifnotequal meeting.type 'plenary' %}

Attendees

{% for participant in participants %} {% if participant.required %}{% endif %}{{ participant.attendee.name }}{% if participant.required %}{% endif %}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endifnotequal %} {% endblock %}