Newer
Older
postorius / src / postorius / templates / postorius / lists / mass_subscribe.html
@Florian Fuchs Florian Fuchs on 23 Mar 2012 560 bytes removed mailmanweb remains
{% extends "postorius/base.html" %}
{% load i18n %}

{% block main %}
    {% if user.is_superuser %}
        {% include 'postorius/menu/list_nav.html' %}
    {% endif %}
    <h1>{% trans "Mass Subscribe" %} <span>- {{list.fqdn_listname}}</span></h1>

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

        {{ form.as_p }}

            <div class="field">
                <button class="btn btn-primary" type="submit">{% trans "Subscribe users" %}</button>
            </div>
        </form>
{% endblock main %}