datatracker/ietf/templates/mailinglists/list_wizard_ListReqAuthorized.html
Bill Fenner 0aa1161f2a Supply form0 to the templates, and use that in ListReqAuthorized.html
to display the right approval text (or a fallback if it's something
else for some reason)
 - Legacy-Id: 494
2007-06-18 16:39:47 +00:00

29 lines
783 B
HTML

{% extends "mailinglists/list_wizard_base.html" %}
{% block mlform %}
<tr><td>
{% if form.authorized.errors %}
<ul class="errorlist">
{% for error in form.authorized.errors %}
<li>{{ error|escape }}</li>
{% endfor %}
</ul>
{% endif %}
{{ form.authorized }}
<b>
{% ifequal form0.domain_name.data "iab.org" %}
I am a member of the IAB or am otherwise authorized to create or
close a mailing list at iab.org, or to move an existing list to
this domain.
{% else %}
{% ifequal form0.domain_name.data "irtf.org" %}
I am an active participant in the IRTF, or am otherwise authorized
to create or close a mailing list at irtf.org, or to move an existing
list to this domain.
{% else %}
I am authorized to perform this action.
{% endifequal %}
{% endifequal %}
</b></td></tr>
{% endblock %}