52 lines
1.3 KiB
HTML
52 lines
1.3 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Confirmation of Request to {{ list.get_mail_type_display }}{% endblock %}
|
|
|
|
{% block css %}
|
|
table {
|
|
margin:0;
|
|
padding:0;
|
|
font-family: Verdana, Arial, sans-serif;
|
|
font-size: 13px;
|
|
color: #022D66;
|
|
font-style: normal;
|
|
}
|
|
th {
|
|
font-weight: normal;
|
|
text-align: left;
|
|
}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if list.approved %}
|
|
This mailing list request has already been
|
|
{% ifequal list.approved 1 %}
|
|
approved and sent to the IETF Secretariat.
|
|
{% else %}
|
|
denied and the requestor has been notified.
|
|
{% endifequal %}
|
|
{% else %}
|
|
<form action="." method="POST">
|
|
<table bgcolor="#88AED2" cellspacing="1" border="0" width="594">
|
|
<tr><td>
|
|
<table bgcolor="f3f8fd" cellpadding="3" cellspacing="0" border="0">
|
|
<tr>
|
|
<td colspan="2"><img src="/images/ietf_topleft.gif" border="0"><img src="/images/blue_title.gif" border="0"></td>
|
|
</tr>
|
|
<tr><td colspan="2">
|
|
<img src="/images/mail_title.gif" border="0">
|
|
</td></tr>
|
|
<tr><td colspan="2">
|
|
<img src="/images/t_un.gif" border="0">
|
|
</td></tr>
|
|
{% include "mailinglists/list_summary.html" %}
|
|
{{ form }}
|
|
<tr><td colspan="2" align="center"><br><br><input type="submit" name="approved" value="Approve Request and Notify Secretariat"><input type="submit" name="disapprove" value="Deny Request and Notify Requestor"></td></tr>
|
|
</table>
|
|
</table>
|
|
</form>
|
|
|
|
|
|
{% endif %}
|
|
{% endblock %}
|