48 lines
1.6 KiB
HTML
48 lines
1.6 KiB
HTML
{% extends "base_site.html" %}
|
|
{% load staticfiles %}
|
|
{% block title %}Proceedings - Status{% endblock %}
|
|
|
|
{% block extrahead %}{{ block.super }}
|
|
<script 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><button type="submit" name="submit">Freeze</button></td>
|
|
{% endif %}
|
|
{% if proceeding.frozen %}
|
|
<tr>
|
|
<td>Frozen Proceeding</td>
|
|
<td><button type="submit" name="submit">Activate</button></td>
|
|
{% endif %}
|
|
</tr>
|
|
</form>
|
|
</table>
|
|
|
|
<div class="button-group">
|
|
<ul>
|
|
<li><button type="button" onclick="history.go(-1);return true">Back</button></li>
|
|
</ul>
|
|
</div> <!-- button-group -->
|
|
</div> <!-- module -->
|
|
|
|
{% endblock %}
|