Newer
Older
postorius / src / postorius / templates / postorius / lists / subscribe.html
@Richard Wackerbarth Richard Wackerbarth on 31 May 2013 435 bytes Make the context variable more explicitly postorius
{% extends postorius_base_template %}
{% load url from future %}
{% 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"> {% csrf_token %}
        {{form.as_p}}
        <input class="btn btn-primary" type="submit" value="{% trans 'Subscribe' %}" />
    </form>
{% endblock main %}