forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase_telechat.html
More file actions
64 lines (53 loc) · 1.94 KB
/
base_telechat.html
File metadata and controls
64 lines (53 loc) · 1.94 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{% extends "base_site.html" %}
{% load staticfiles %}
{% block title %}Telechat{% endblock %}
{% block extrahead %}{{ block.super }}
<script type="text/javascript" src="{% static 'secr/js/utils.js' %}"></script>
<link rel="stylesheet" type="text/css" href="{% static 'secr/css/telechat.css' %}" />
{% endblock %}
{% block breadcrumbs %}{{ block.super }}
» <a href="{% url 'ietf.secr.telechat.views.main' %}">Telechat</a>
{% endblock %}
{% block content %}
{% load ietf_filters %}
<div id="telechat-sidebar">
<h2>Agenda {{ date }}</h2>
{% if agenda %}
<ul>
{% for num, section in agenda.sections.items %}
{% if num >= "2" and num < "5" %}
<li class="level{{ num|sectionlevel }}">{{ num }} {{ section.title }}
{% if "docs" in section %}
{% if section.docs %}
<ul class="doc-list">
{% for doc in section.docs %}
<li><a href="{% url 'ietf.secr.telechat.views.doc_detail' date=date name=doc.name %}">{{ doc.name }}</a></li>
{% endfor %}
</ul>
{% else %}
<div>None</div>
{% endif %}
</li>
{% endif %}
{% endif %}
{% endfor %}
</ul>
{% else %}
Please select a telechat to display the agenda.
{% endif %}
</div>
<div id="telechat-main">
{% if date %}
<div id="telechat-nav">
<ul class="list-nav">
<li><a href="{% url 'ietf.secr.telechat.views.roll_call' date=date %}">Roll Call</a></li>
<li><a href="{% url 'ietf.secr.telechat.views.bash' date=date %}">Bash Agenda</a></li>
<li><a href="{% url 'ietf.secr.telechat.views.minutes' date=date %}">Minute Approval</a></li>
<li><a href="{% url 'ietf.secr.telechat.views.doc' date=date %}">Main Agenda</a></li>
<li><a href="{% url 'ietf.secr.telechat.views.management' date=date %}">Management Issues</a></li>
</ul>
</div>
{% endif %}
{% block subsection %}<div id="telechat-content"></div>{% endblock %}
</div>
{% endblock %}