47 lines
2 KiB
HTML
47 lines
2 KiB
HTML
{% extends "mailinglists/nwg_wizard_base.html" %}
|
|
|
|
{% block nwgcontent %}
|
|
<h2>Step 4</h2>
|
|
<h4>Please verify the following information:</h4>
|
|
<form action="." method="POST">
|
|
<table bgcolor="#88AED2" cellspacing="1" border="0">
|
|
<tr valign="top"><td>
|
|
<table bgcolor="#f3f8fd" cellpadding="3" cellspacing="0" border="0">
|
|
<tr valign="top">
|
|
<td colspan=2>
|
|
<h3>Request Submit Confirmation</h3>
|
|
Please review the following information that you are about to submit.<br>
|
|
Once you click the 'Submit' button below, this request will be sent to
|
|
the selected Area Director for approval.<br>
|
|
<br>
|
|
</td>
|
|
</tr>
|
|
<tr valign="top"><td>Request Type:</td><td>
|
|
{% ifequal clean_forms.0.add_edit "add" %}
|
|
Adding a new entry
|
|
{% else %}
|
|
Editing an existing entry
|
|
{% endifequal %}</td></tr>
|
|
<tr valign="top"><td>Submitter's Name:</td><td>{{ clean_forms.1.s_name.data|escape }}</td></tr>
|
|
<tr valign="top"><td>Submitter's Email Address:</td><td>{{ clean_forms.1.s_email.data|escape }}</td></tr>
|
|
<tr valign="top"><td>Mailing List Name:</td><td>{{ clean_forms.1.list_name.data|escape }}</td></tr>
|
|
<tr valign="top"><td>URL or Email Address of Mailing List: </td><td><pre>{{ clean_forms.1.list_url.data|escape }}</pre></td></tr>
|
|
<tr valign="top"><td>URL to Subscribe: </td><td><pre>{% firstof clean_forms.1.subscribe_url.data "Not Applicable" %}</pre></td></tr>
|
|
<tr valign="top"><td>Other Info. to Subscribe: </td><td><pre>{{ clean_forms.1.subscribe_other.data|escape }}</pre></td></tr>
|
|
<tr valign="top"><td>Administrator(s)' Email Address(es): </td><td><pre>{{ clean_forms.1.admin.data|escape|linebreaks }}</pre></td></tr>
|
|
<tr valign="top"><td>Purpose: </td><td>{{ clean_forms.1.purpose.data|escape }}</td></tr>
|
|
<tr valign="top"><td>Area: </td><td><pre>{{ area }}</pre></td></tr>
|
|
<tr valign="top"><td>Approving Area Director: </td><td><pre>{{ approver|escape }}</pre></td></tr>
|
|
<tr valign="top">
|
|
<td></td>
|
|
<td>
|
|
<input type="submit" value=" Submit ">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</table>
|
|
{{ previous_fields }}
|
|
<input type="hidden" name="{{ step_field }}" value="{{ step }}" />
|
|
</form>
|
|
{% endblock %}
|