{% extends "base.html" %}
{% load datetime %}
{% block page_name %}
Meeting Search - {{ summit.title }}
{% endblock %}
{% block sub_nav_links %}
Back to Summit
{% endblock %}
{% block content %}
{% if meetings %}
Results for: {{query}}
{% else %}
No Meetings found matching query
{% endif %}
{% for meeting in meetings %}
- {{meeting.title}}{% if meeting.agenda_set.count %} -
{% for agenda in meeting.agenda_set.all %}{{agenda.slot}}{% endfor %}
{% endif %}
{% endfor %}
{% block closure %}
{% endblock %}
{% endblock %}