Newer
Older
postorius / templates / mailman-django / lists / mass_subscribe.html
@benste benste on 30 May 2011 1 KB added trans and blocktrans
{% 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 url_list_settings=url.list_settings.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. To go back to the general settings page, please click <a href="{{ url_list_settings}}">here</a>.{% endblocktrans %}
{% endblock %}

{% block content %}

<h1>{% trans "Mass Subscribe Users" %}</h1>

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

<p>{% blocktrans %}Here you can mass subscribe users to the list <em>{{ fqdn_listname }}</em>. To do so, please enter one name on each row.{% endblocktrans %}</p>

{% if message %}
    <p id="message">{{ message }}</p>
{% endif %}

<form action="{% url mass_subscribe fqdn_listname %}" method="post" class="mass_subscribe">

{{ form.as_div }}

    <div class="field">
        <button type="submit">{% trans "Subscribe users" %}</button>
    </div>

</form>

{% endblock %}