{% extends "mailman-django/base.html" %} {% load i18n %} {% block links%} {% blocktrans with url_list_info=url list_info fqdn_listname url_list_delete=url list_delete fqdn_listname %} You can also <a href="{{url_list_info}}">subscribe or unsubscribe</a> a user to the list "the normal way" or <a href="{{url_list_delete]}">delete</a> the list.{% endblocktrans %} {% endblock %} {% block content %} <h1>{% trans "List Created" %}</h1> <p id=logout><a href="{% url logout %}">Logout</a></p> <p>{% blocktrans %}The list <em>{{ fqdn_listname }}</em> has been created. What would you like to do next?{% endblocktrans %}</p> <ul> <li><a href="{% url mass_subscribe fqdn_listname %}">{% blocktrans %}Subscribe users</a> to the list <em>{{ fqdn_listname }}</em> or send list invitations.{% endblocktrans %}</li> <li>{%trans "Edit <em>{{ fqdn_listname }}</em>'s" %} <a href="{% url list_settings fqdn_listname %}">{%trans "settings"}</a>.</li> <li><a href="{% url list_new %}">{% blocktrans %}Create</a> another list.{% endblocktrans %}</li> </ul> {% endblock %}