{% extends postorius_base_template %} {% load i18n %} {% load bootstrap_tags %} {% load nav_helpers %} {% block subtitle %} {% trans 'Subscription Preferences' %} | {{ user.username }} {% endblock %} {% block main %} {% user_nav 'settings' %}

Subscription Settings

{% if nolists %}

{% trans 'No Preferences Available' %}

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

{% else %}
{% csrf_token %} {{ formset.management_form }}
{% for form,subscription in zipped_data %} {% if forloop.first %} {% for field in form.visible_fields %} {% endfor %} {% endif %} {% for field in form %} {% if field|fieldtype == 'RadioSelect' %} {% else %} {% endif %} {% endfor %} {% endfor %}
{% trans 'Subscription' %}
{{ subscription.list_id }} {% for choice in field %} {% endfor %} {{ field|add_form_control }}
{% endif %}
{% endblock main %} {% block additionaljs %} {% endblock %}