forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblue_sheet.html
More file actions
49 lines (40 loc) · 1.43 KB
/
blue_sheet.html
File metadata and controls
49 lines (40 loc) · 1.43 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
{% extends "base_site.html" %}
{% load staticfiles %}
{% block title %}Meetings - Blue Sheet{% endblock %}
{% block extrahead %}{{ block.super }}
<script type="text/javascript" src="{% static 'secr/js/utils.js' %}"></script>
{% endblock %}
{% block breadcrumbs %}{{ block.super }}
» <a href="../../">Meetings</a>
» <a href="../">{{ meeting.number }}</a>
» Blue Sheets
{% endblock %}
{% block content %}
<div class="module">
<h2>IETF {{ meeting.number }} - Blue Sheet</h2>
<p>Use this to generate blue sheets for meeting sessions.</p>
<ul class="none">
<li>
<form style="display:inline" method="post" action="{% url "ietf.secr.meetings.views.blue_sheet_generate" meeting_id=meeting.number%}">{% csrf_token %}
<input type="submit" value="Generate Blue Sheets">
</form>
Last run:
{% if last_run %}
{{ last_run }}
{% else %}
Never
{% endif %}
</li>
</ul>
<p>Use this to download the blue sheets from the server.</p>
<ul class="none">
<li>
<button onclick="window.location='{{ url }}'">Download Blue Sheets</button>
</li>
</ul>
<hr />
<p>
Use the session details page for a group to upload scanned bluesheets. The session details pages for a group can be reached from the meeting's <a href="{% url 'ietf.meeting.views.materials' num=meeting.number %}">materials page</a>.
</p>
</div> <!-- module -->
{% endblock %}