mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-16 19:23:27 +00:00
59 lines
2.1 KiB
Django/Jinja
59 lines
2.1 KiB
Django/Jinja
{% extends "core/base.jinja" %}
|
|
|
|
{% block title %}
|
|
{% trans %}Mailing lists{% endtrans %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if has_objects %}
|
|
|
|
{% trans %}Remember : mailing lists need to be validated by the school to work, please inform us about any new mailing list created{% endtrans %}
|
|
|
|
{% for mailing in object_list %}
|
|
<h2>{% trans %}Mailing{% endtrans %} {{ mailing.email }}
|
|
{%- if user.is_owner(mailing) -%}
|
|
<a href="{{ url('club:mailing_delete', mailing_id=mailing.id) }}"> - {% trans %}Delete{% endtrans %}</a>
|
|
{%- endif -%}
|
|
</h2>
|
|
<hr>
|
|
<table>
|
|
<tr>
|
|
<th>{% trans %}User{% endtrans %}</th>
|
|
<th colspan="2">{% trans %}Email{%endtrans%}</th>
|
|
</tr>
|
|
{% for subscriber in mailing.subscriptions.all() %}
|
|
<tr>
|
|
{% if subscriber.user %}
|
|
<td>{{ subscriber.user }}</td>
|
|
{% else %}
|
|
<td>{% trans %}Unregistered user{% endtrans %}</td>
|
|
{% endif %}
|
|
<td>{{ subscriber.email }}</td>
|
|
<td><a href="{{ url('club:mailing_subscription_delete', mailing_subscription_id=subscriber.id) }}">{% trans %}Delete{% endtrans %}</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
<p>{% trans %}No mailing list existing for this club{% endtrans %}</p>
|
|
{% endif %}
|
|
|
|
{% if has_objects %}
|
|
<h2>{% trans %}New member{% endtrans %}</h2>
|
|
<form action="{{ url('club:mailing_subscription_create', club_id=club.id) }}" method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{{ add_member.as_p() }}
|
|
<p><input type="submit" value="{% trans %}Add to mailing list{% endtrans %}" /></p>
|
|
</form>
|
|
{% endif %}
|
|
|
|
<h2>{% trans %}New mailing{% endtrans %}</h2>
|
|
<form action="{{ url('club:mailing_create', club_id=club.id) }}" method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{{ add_mailing.as_p() }}
|
|
<p><input type="submit" value="{% trans %}Create mailing list{% endtrans %}" /></p>
|
|
</form>
|
|
|
|
{% endblock %}
|