46 lines
1.6 KiB
HTML
46 lines
1.6 KiB
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin ietf_filters static %}
|
|
|
|
{% block title %}Sessions linked to {{doc.name}}{% endblock %}
|
|
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Sessions linked to <a href="{% url 'ietf.doc.views_doc.document_main' name=doc.name %}">{{doc.name}}</a>{% if doc.title %}<br><small class="text-muted">{{doc.title}}</small>{% endif %}</h1>
|
|
|
|
{% if user|has_role:"Secretariat,Area Director,WG Chair,WG Secretary,RG Chair,RG Secretary,IRTF Chair,Team Chair" %}
|
|
<div class="buttonlist" >
|
|
<a class="btn btn-primary" id="addsessionsbutton" href="{% url 'ietf.doc.views_doc.add_sessionpresentation' name=doc.name %}">Link to more sessions</a>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if in_progress %}
|
|
<h2 class="mt-3">Meetings in progress</h2>
|
|
{% with sessions=in_progress %}
|
|
{% include "doc/material/presentations-row.html" %}
|
|
{% endwith %}
|
|
{% endif %}
|
|
|
|
{% if future %}
|
|
<h2 class="mt-3">Future meetings</h2>
|
|
{% with sessions=future %}
|
|
{% include "doc/material/presentations-row.html" %}
|
|
{% endwith %}
|
|
{% endif %}
|
|
|
|
{% if past %}
|
|
<h2 class="mt-3">Past meetings</h2>
|
|
{% with sessions=past %}
|
|
{% include "doc/material/presentations-row.html" %}
|
|
{% endwith %}
|
|
{% endif %}
|
|
|
|
{% endblock content %}
|
|
|
|
{% block js %}
|
|
<script src="{% static "ietf/js/list.js" %}"></script>
|
|
{% endblock %} |