forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
executable file
·39 lines (31 loc) · 1.14 KB
/
main.html
File metadata and controls
executable file
·39 lines (31 loc) · 1.14 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 staticfiles %}
{% block title %}Meetings{% endblock %}
{% block extrahead %}{{ block.super }}
<script src="{% static 'secr/js/utils.js' %}"></script>
{% endblock %}
{% block breadcrumbs %}{{ block.super }}
» Meetings
{% endblock %}
{% block content %}
<div class="module">
<h2>Meeting Manager<span class="unlocked"><a href="{% url 'ietf.secr.meetings.views.add' %}" class="addlink">Add</a></span></h2>
<div class="inline-related">
<h3><b>Select a meeting to manage</b></h3>
<br>
<p>
Quicklinks:
{% for meeting in meetings|slice:":5" %}
<a href="{% url "ietf.secr.meetings.views.view" meeting_id=meeting.number %}">{{ meeting.number }}</a>
{% endfor %}
</p>
<br>
<form action="" method="post">{% csrf_token %}
<table>
{{ form }}
</table>
<input type="submit" value="Select" />
</form>
</div> <!-- inline-related -->
</div> <!-- module -->
{% endblock %}