40 lines
941 B
HTML
40 lines
941 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block morecss %}
|
|
.warning {
|
|
font-weight: bold;
|
|
color: #a00;
|
|
}
|
|
{% endblock %}
|
|
|
|
{% block title %}
|
|
Change the responsible AD for {{ charter.canonical_name }}-{{ charter.rev }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Change the responsible AD for {{ charter.canonical_name }}-{{ charter.rev }}</h1>
|
|
|
|
<form class="edit-info" action="" enctype="multipart/form-data" method="post">{% csrf_token %}
|
|
<table>
|
|
{% for field in form.visible_fields %}
|
|
<tr>
|
|
<th>{{ field.label_tag }}</th>
|
|
<td>
|
|
{{ field }}
|
|
{% if field.help_text %}<div class="help">{{ field.help_text }}</div>{% endif %}
|
|
{{ field.errors }}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
<tr>
|
|
<td></td>
|
|
<td class="actions">
|
|
<a href="{% url "doc_view" name=charter.canonical_name %}">Back</a>
|
|
<input type="submit" value="Submit"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
|
|
{% endblock %}
|