File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 %}
You can’t perform that action at this time.
0 commit comments