datatracker/ietf/templates/meeting/session_agenda_include.html

28 lines
1.4 KiB
HTML

{# Copyright The IETF Trust 2015, All Rights Reserved #}
{# expects slug, session, and timeslot to be in the context. Calling template must load the agenda_materials.js script. #}
{% load origin %}{% origin %}
{% load static %}
{% load textfilters %}
{% load ietf_filters %}
<div class="modal fade text-left" id="modal-{{ slug }}" tabindex="-1" role="dialog" aria-labelledby="label-{{ slug }}" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title" id="label-{{slug}}">
Meeting materials for
{% if timeslot.type.slug == 'plenary' %}{{timeslot.name}}{% else %}{{session.historic_group.name}}{% endif %}
</h4>
</div>
<div class="modal-body">
<div class="session-materials"
data-src="{% url 'ietf.meeting.views.session_materials' session_id=session.pk %}">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>