{% extends "core/base.jinja" %} {% block title %} {% trans %}Mailing lists{% endtrans %} {% endblock %} {% block content %} {% if has_objects %} {% for mailing in object_list %}

{% trans %}Mailing{% endtrans %} {{ mailing.email }} {%- if user.is_owner(mailing) -%} - {% trans %}Delete{% endtrans %} {%- endif -%}


{% for subscriber in mailing.subscriptions.all() %} {% if subscriber.user %} {% else %} {% endif %} {% endfor %}
{% trans %}User{% endtrans %} {% trans %}Email{%endtrans%}
{{ subscriber.user }}{% trans %}Unregistered user{% endtrans %}{{ subscriber.email }} {% trans %}Delete{% endtrans %}
{% endfor %} {% else %}

{% trans %}No mailing list existing for this club{% endtrans %}

{% endif %} {% if has_objects %}

{% trans %}New member{% endtrans %}

{% csrf_token %} {{ new_member.as_p() }}

{% endif %}

{% trans %}New mailing{% endtrans %}

{% csrf_token %} {{ new_mailing.as_p() }}

{% endblock %}