{% 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_list' 'msgid:title:user_settings_list' %} {% 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 list subscription can have specific Mailman preferences.' %}

{% trans 'Any options showing as not set inherit at runtime from your global or address specific preferences (viewable on other tabs)' %}

{% 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' %} {% elif field|fieldtype_is:'Select' %} {% else %} {% endif %} {% endfor %} {% endfor %}
{% trans 'Subscription' %}
{{ form.list_id }} {% if form.subscription_mode == 'as_address'%} ({{ form.address }}) {% else %} ({% trans 'Primary Address' %}) {% endif %}
{% for choice in field %} {% endfor %}
{{ field|add_form_select }}{{ field|add_form_control }}
{% endif %}
{% endblock content %} {% block additionaljs %} {% endblock %}