19 lines
449 B
HTML
19 lines
449 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Manage group {{ state.group.acronym }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Manage group {{ state.group.acronym }}</h1>
|
|
|
|
{% if form.errors %}<h3>Please correct the following errors</h3>{% endif %}
|
|
|
|
<form action="" method="post">{% csrf_token %}
|
|
<table>
|
|
{{ form }}
|
|
</table>
|
|
<input type="hidden" name="{{ stage_field }}" value="1" />
|
|
<p><input type="submit" value="Preview" /></p>
|
|
</form>
|
|
|
|
{% endblock %}
|