From 00f2974eeb4103b1a1ebb11d8cd1b74ea6e840a9 Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Tue, 21 Aug 2012 04:15:30 +0000 Subject: [PATCH] Missed a template - Legacy-Id: 4771 --- ietf/templates/wgcharter/change_ad.html | 39 +++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 ietf/templates/wgcharter/change_ad.html diff --git a/ietf/templates/wgcharter/change_ad.html b/ietf/templates/wgcharter/change_ad.html new file mode 100644 index 000000000..15146710a --- /dev/null +++ b/ietf/templates/wgcharter/change_ad.html @@ -0,0 +1,39 @@ +{% 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 %} +

Change the responsible AD for {{ charter.canonical_name }}-{{ charter.rev }}

+ +
+ + {% for field in form.visible_fields %} + + + + + {% endfor %} + + + + +
{{ field.label_tag }}: + {{ field }} + {% if field.help_text %}
{{ field.help_text }}
{% endif %} + {{ field.errors }} +
+ Back + +
+
+ +{% endblock %}