{% extends "postorius/base.html" %} {% load i18n %} {% load bootstrap_tags %} {% load nav_helpers %} {% block head_title %} {% trans 'Subscription preferences' %} | {{ user.username }} - {{ block.super }} {% endblock %} {% block content %}
{% user_nav 'settings_address' 'Address-based settings' %} {% if formset|length == 0 %}

{% trans 'No preferences available' %}

{% trans 'You are not yet subscribed to any lists, so you have no Mailman preferences.' %}

{% else %}

{% trans 'Each email address can have specific Mailman preferences.' %}

{% trans 'Any options showing as not set here have inherit at runtime from your global preferences (viewable on other tab)' %}

{% csrf_token %} {{ formset.management_form }}
{% for form in formset %} {% if forloop.first %} {% for field in form.visible_fields %} {% endfor %} {% endif %} {% for field in form %} {% if field|fieldtype_is:'RadioSelect' %} {% else %} {% endif %} {% endfor %} {% endfor %}
{% trans 'Address' %}
{{ form.address }} {% for choice in field %} {% endfor %} {{ field|add_form_control }}
{% endif %}
{% endblock content %} {% block additionaljs %} {% endblock %}