{% extends "notifications/base.html" %} {% load i18n %} {% block subject %}{% if to_default_owners %}[{{ type_code }}] {% endif %}{% blocktrans with username=user.username email=list.email %}MSG.SUBSCRIPTION_REQUEST {{ username }} {{ email }}{% endblocktrans %}{% endblock %} {% block content %} {% if to_default_owners %}
{% trans "MSG.SUBSCRIBING" %}: | {{ user.first_name }} {{ user.last_name }} ({{ user.username }}) |
{% trans "MSG.LIST_TYPE" %}: | {{ type }} |
{% trans "MSG.LIST_NAME" %}: | {{ list.name }} |
{% trans "MSG.LIST_EMAIL" %}: | {{ list.email }} |
{% trans "Responsible" %}: | {% for owner in list.owner_set.all %} {{ owner.user.first_name }} {{ owner.user.last_name }} ({{ owner.user.username }}) {% if not forloop.last %}, {% endif %} {% endfor %} |