forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatus.html
More file actions
48 lines (39 loc) · 1.54 KB
/
status.html
File metadata and controls
48 lines (39 loc) · 1.54 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
{% extends "base_site.html" %}
{% load staticfiles %}
{% block title %}Proceedings - Status{% endblock %}
{% block extrahead %}{{ block.super }}
<script type="text/javascript" src="{% static 'secr/js/utils.js' %}"></script>
{% endblock %}
{% block breadcrumbs %}{{ block.super }}
» <a href="../../">Proceedings</a>
» <a href="../">{{ meeting.meeting_num }}</a>
» Status
{% endblock %}
{% block content %}
<ul class="errorlist"><li>Changing one of the status below will result in changing the status of Proceedings {{ meeting.meeting_num }}. </li></ul>
<div class="module">
<h2>IETF {{ meeting.meeting_num }}</h2>
<table class="center">
<form action="modify/" method="post">{% csrf_token %}
<tr>
<input type="hidden" name="frozen" value="{{ proceeding.frozen }}" />
{% if not proceeding.frozen %}
<tr>
<td>Active Proceeding</td>
<td><input type="submit" name="submit" value="Freeze" /></td>
{% endif %}
{% if proceeding.frozen %}
<tr>
<td>Frozen Proceeding</td>
<td><input type="submit" name="submit" value="Activate" /></td>
{% endif %}
</tr>
</form>
</table>
<div class="button-group">
<ul>
<li><button onclick="history.go(-1);return true">Back</button></li>
</ul>
</div> <!-- button-group -->
</div> <!-- module -->
{% endblock %}