{% 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 %}
{% else %} {% url 'list' list.name as list_url %} {% blocktrans with user_full_name=user.get_full_name user_name=user.username list_normalized_name=list.normalized_name %}TXT.REQUEST {{ user_full_name }} {{ user_name }} {{ list_url }} {{ list_normalized_name }} {{ base_url }}{% endblocktrans %} {% include "notifications/grant_deny_links.html" %} {% endif %} {% endblock %}