Newer
Older
postorius / src / postorius / templates / postorius / lists / mass_subscribe.html
@Aurélien Bompard Aurélien Bompard on 7 Mar 2016 466 bytes Factor mass operations in the menu to make it shorter
{% extends postorius_base_template %}
{% load i18n %}
{% load bootstrap_tags %}
{% load nav_helpers %}

{% block subtitle %}
{% trans 'Mass subscribe' %} | {{ list.fqdn_listname }}
{% endblock %}

{% block main %}

    {% list_nav 'list_mass_ops' 'Mass subscription' %}

    <form action="{% url 'mass_subscribe' list.list_id %}" method="post" class="form-horizontal">
        {% render_form_horizontal form 2 8 'Subscribe users' %}
    </form>

{% endblock main %}