datatracker/ietf/templates/mailinglists/list_toapprove.html
Bill Fenner faf885aabd MailingList model updates:
- Add domain helper function to default domain name to ietf.org
- Use correct values for post_who

Template updates:
- Use the domain helper function
- Use the post_who_display helper function
- Move some of the items that could wrap to the next line
 - Legacy-Id: 212
2007-06-01 20:40:21 +00:00

52 lines
1.4 KiB
HTML

{% extends "base.html" %}
{% block title %}Confirmation of request to {% filter escape %}{% include "mailinglists/list_type_message2.txt" %}{% endfilter %}{% 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 %}