Newer
Older
postorius / templates / mailman-django / lists / created.html
  1. {% extends "mailman-django/base.html" %}
  2. {% load i18n %}
  3.  
  4. {% block links%}
  5. {% url list_info fqdn_listname as url_list_info %}
  6. {% url list_delete fqdn_listname as url_list_delete %}
  7. {% blocktrans %} 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 %}
  8. {% endblock %}
  9.  
  10. {% block content %}
  11.  
  12. <h1>{% trans "List Created" %}</h1>
  13.  
  14. <p id=logout><a href="{% url logout %}">Logout</a></p>
  15.  
  16. <p>{% blocktrans %}The list <em>{{ fqdn_listname }}</em> has been created. What would you like to do next?{% endblocktrans %}</p>
  17.  
  18. <ul>
  19. <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>
  20. <li>{%trans "Edit <em>{{ fqdn_listname }}</em>'s" %} <a href="{% url list_settings fqdn_listname %}">{%trans "settings"}</a>.</li>
  21. <li><a href="{% url list_new %}">{% blocktrans %}Create</a> another list.{% endblocktrans %}</li>
  22. </ul>
  23.  
  24. {% endblock %}