{% extends "notifications/base.html" %}
{% load i18n %}
{% block subject %}{% if to_default_owners %}[{{ type_code }}] {% endif %}{% blocktrans with email=list.email %}MSG.SUBSCRIPRION_TO {{ email }}{% endblocktrans %}{% endblock %}
{% block content %}
{% url 'list' list.name as list_url %}
{% blocktrans with list_name=list.name base_url=base_url list_url=list_url %}TXT.SUBSCRIBED_AUTOMATICALLY {{ base_url }}{{ list_url }}{{ list_name }}{% endblocktrans %}
{% for o in owners %}
{{ o.i_first_name }} {{ o.i_last_name }}
{% endfor %}
{% trans "LBL.DESCRIPTION" %}:
{{ list.info }}
{% blocktrans with list_name=list.name base_url=base_url list_url=list_url stype=stype %}TXT.SUBSCRIBED_AUTOMATICALLY_DETAILS {{ stype }} {{ base_url }}{{ list_url }}{{ list_name }}{% endblocktrans %}
{% trans "TXT.CONTACT_TOOLS" %}
{% endblock %}