{% 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' 'Subscription settings' %} {% if not zipped_data or nolists %}

{% 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.' %}

{% 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 content %} {% block additionaljs %} {% endblock %}