Newer
Older
postorius / templates / mailman-django / lists / created.html
{% extends "mailman-django/base.html" %}
{% load i18n %}

{% block links%}
You can also <a href="{% url list_info fqdn_listname %}">subscribe or unsubscribe</a> a user to the list "the normal way" or <a href="{% url list_delete fqdn_listname %}">delete</a> the list.
{% endblock %}

{% block content %}

<h1>{% trans "List Created" %}</h1>

<p id=logout><a href="{% url logout %}">Logout</a></p>

<p>The list <em>{{ fqdn_listname }}</em> has been created. What would you like to do next?</p>

<ul>
    <li><a href="{% url mass_subscribe fqdn_listname %}">Subscribe users</a> to the list <em>{{ fqdn_listname }}</em> or send list invitations.</li>
    <li>Edit <em>{{ fqdn_listname }}</em>'s <a href="{% url list_settings fqdn_listname %}">settings</a>.</li>
    <li><a href="{% url list_new %}">Create</a> another list.</li>
</ul>




{% endblock %}