{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin ietf_filters %} {% block title %}Sessions linked to {{doc.name}}{% endblock %} {% block content %} {% origin %}

Sessions linked to {{doc.name}}{% if doc.title %}
{{doc.title}}{% endif %}

{% if user|has_role:"Secretariat,Area Director,WG Chair,WG Secretary,RG Chair,RG Secretary,IRTF Chair,Team Chair" %} Link to more sessions {% endif %}
{% if in_progress %}
Meetings in progress
{% with sessions=in_progress %} {% include "doc/material/presentations-row.html" %} {% endwith %}
{% endif %} {% if future %}
Future meetings
{% with sessions=future %} {% include "doc/material/presentations-row.html" %} {% endwith %}
{% endif %} {% if past %}
Past meetings
{% with sessions=past %} {% include "doc/material/presentations-row.html" %} {% endwith %}
{% endif %} {% endblock content %}