forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselect.html
More file actions
executable file
·39 lines (27 loc) · 1.01 KB
/
select.html
File metadata and controls
executable file
·39 lines (27 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{% extends "base_site.html" %}
{% load ietf_filters %}
{% load staticfiles %}
{% block title %}Proceedings{% endblock %}
{% block extrahead %}{{ block.super }}
<script src="{% static 'secr/js/utils.js' %}"></script>
{% endblock %}
{% block breadcrumbs %}{{ block.super }}
» <a href="{% url 'ietf.secr.proceedings.views.main' %}">Proceedings</a>
» {{ meeting.number }}
{% endblock %}
{% block instructions %}
<a href="https://www.ietf.org/instructions/meeting_materials_tool.html" target="_blank">Instructions</a>
{% endblock %}
{% block content %}
<div class="module interim-container">
<div class="inline-related">
<h2>Secretariat Only Functions</h2>
<div id="private-functions">
{% include "includes/proceedings_functions.html" %}
</div> <!-- private-functions -->
</div> <!-- inline-group -->
</div> <!-- module -->
{% endblock %}
{% block footer-extras %}
{% include "includes/upload_footer.html" %}
{% endblock %}