22 lines
549 B
HTML
22 lines
549 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Change whether {{ doc.name }}-{{ doc.rev }} is the result of a consensus process{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Change whether {{ doc.name }}-{{ doc.rev }} is the result of a consensus process</h1>
|
|
|
|
<form action="" method="post">{% csrf_token %}
|
|
<table>
|
|
{{ form.as_table }}
|
|
<tr>
|
|
<td></td>
|
|
<td class="actions">
|
|
<a href="{% url "doc_view" name=doc.name %}">Back</a>
|
|
<input type="submit" value="Submit"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
|
|
{% endblock %}
|