Newer
Older
postorius / src / postorius / templates / postorius / lists / subscribe.html
{% extends extend_template %}
{% load i18n %}

{% block main %}
    <h1>{% trans 'Subscribe' %} <span>{{ list.fqdn_listname}}</span></h1>
    <form action="{% url list_subscribe list.fqdn_listname %}" method="post" class="list_subscribe">
        {{form.as_p}}
        <input class="btn btn-primary" type="submit" value="{% trans 'Subscribe' %}" />
    </form>
{% endblock main %}