the form attribute "initial" (as in initial data) Render the form field-by-field for MailingListForm, so that we can render the mailing list name conditionally as a text input box or as a hidden field with the value in the page. We can also insert the domain name here too. (Note that this means that hidden fields in this form other than domain name have to be treated specially!) - Legacy-Id: 270
20 lines
1.7 KiB
HTML
20 lines
1.7 KiB
HTML
<tr><td colspan="2">Request to {% filter escape %}{% include "mailinglists/list_type_message2.txt" %}{% endfilter %}</td></tr>
|
|
<tr><td> Requestor: </td><td>{{ list.requestor|escape }}</td></tr>
|
|
<tr><td> Requestor's email address: </td><td>{{ list.requestor_email|urlize }}</td></tr>
|
|
<tr><td> Email list name: </td><td>{{ list.mlist_name }}@{{ list.domain }}</td></tr>
|
|
{% ifequal req "delete" %}
|
|
<tr><td> Reason for closing list: </td><td>{{ list.reason_to_delete|escape|linebreaksbr }}</td></tr>
|
|
{% else %}
|
|
<tr><td> Short description of the email list: </td><td>{{ list.short_desc|escape }}</td></tr>
|
|
<tr><td> Long description of the email list: </td><td>{{ list.long_desc|escape }}</td></tr>
|
|
<tr><td> Administrator(s): </td><td><pre>{{ list.admins|escape }}</pre></td></tr>
|
|
<tr><td> Email address(es) of initial subscriber(s) (optional): </td><td><pre>{{ list.initial_members|escape }}</pre></td></tr>
|
|
<tr><td> Welcome message for initial subscriber(s) (optional): </td><td>{{ list.welcome_message|linebreaksbr }}</td></tr>
|
|
<tr><td> Welcome message for new subscriber(s) (optional): </td><td>{{ list.welcome_new|linebreaksbr }}</td></tr>
|
|
<tr><td> Required steps for subscription: </td><td>{{ list.get_subscription_display }}</td></tr>
|
|
<tr><td> Messages to this list can be posted by:</td><td>{{ list.get_post_who_display }}</td></tr>
|
|
<tr><td> Administrator approval required for posts: </td><td>{{ list.post_admin|yesno:"YES,NO" }}</td></tr>
|
|
<tr><td> Private Archive: </td><td>{{ list.archive_private|yesno:"YES,NO" }}</td></tr>
|
|
<tr><td> Specific information about how to access and move the exiting archive from a remote location (optional): </td><td>{{ list.archive_remote }}</td></tr>
|
|
{% endifequal %}
|