Skip to content

Commit 00f2974

Browse files
committed
Missed a template
- Legacy-Id: 4771
1 parent 735efac commit 00f2974

1 file changed

Lines changed: 39 additions & 0 deletions

File tree

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{% extends "base.html" %}
2+
3+
{% block morecss %}
4+
.warning {
5+
font-weight: bold;
6+
color: #a00;
7+
}
8+
{% endblock %}
9+
10+
{% block title %}
11+
Change the responsible AD for {{ charter.canonical_name }}-{{ charter.rev }}
12+
{% endblock %}
13+
14+
{% block content %}
15+
<h1>Change the responsible AD for {{ charter.canonical_name }}-{{ charter.rev }}</h1>
16+
17+
<form class="edit-info" action="" enctype="multipart/form-data" method="POST">
18+
<table>
19+
{% for field in form.visible_fields %}
20+
<tr>
21+
<th>{{ field.label_tag }}:</th>
22+
<td>
23+
{{ field }}
24+
{% if field.help_text %}<div class="help">{{ field.help_text }}</div>{% endif %}
25+
{{ field.errors }}
26+
</td>
27+
</tr>
28+
{% endfor %}
29+
<tr>
30+
<td></td>
31+
<td class="actions">
32+
<a href="{% url doc_view name=charter.canonical_name %}">Back</a>
33+
<input type="submit" value="Submit"/>
34+
</td>
35+
</tr>
36+
</table>
37+
</form>
38+
39+
{% endblock %}

0 commit comments

Comments
 (0)