{% extends postorius_base_template %} {% load i18n %} {% load bootstrap_tags %} {% load nav_helpers %} {% block subtitle %} {% trans 'Info' %} | {{ list.fqdn_listname }} {% endblock %} {% block main %} {% if user.is_superuser or user.is_list_owner or user.is_list_moderator %} {% list_nav 'list_summary' 'Summary' %} {% endif %}

{{ list.settings.description }}

{% trans 'To contact the list owners, use the following email address:' %} {{ list.settings.owner_address }}

{# Archives #} {% if hyperkitty_url %} {% url 'hk_list_overview' list.fqdn_listname as hyperkitty_list_url %} {% blocktrans %}

To see the prior postings to this list, visit the archives.

{% endblocktrans %} {% endif %}
{# Subscription #}

{% trans 'Subscription' %}

{% if user.is_authenticated %} {% if userSubscribed %}

{% trans 'You are subscribed to this list with the following address:' %} {{ subscribed_address }}

{% csrf_token %} {% if change_subscription_form.non_field_errors %}
{{ change_subscription_form.non_field_errors }}
{% endif %} {% for field in change_subscription_form %}
{% if field.errors %}
{{ field.errors }}
{% endif %}
{{ field|add_form_control }}
{% endfor %}

{% trans 'Unsubscribe' %} {{ subscribed_address }}

{% else %}

{% trans 'Subscribe to this list' %}

{% csrf_token %} {% if subscribe_form.non_field_errors %}
{{ subscribe_form.non_field_errors }}
{% endif %} {% for field in subscribe_form %}
{% if field.errors %}
{{ field.errors }}
{% endif %}
{{ field|add_form_control }}
{% endfor %}
{% endif %} {% else %}

{% trans 'You have to log in to subscribe to this list.' %}

{% trans 'Log In' %}

{% endif %} {# List metrics #} {% if user.is_authenticated %} {% if user.is_list_owner or user.is_superuser %}

{% trans 'List metrics' %}

{% trans 'Created at' %}
{{ list.settings.created_at }}
{% trans 'Last post at' %}
{{ list.settings.last_post_at }}
{% trans 'Digest last sent at' %}
{{ list.settings.digest_last_sent_at }}
{% trans 'Volume' %}
{{ list.settings.volume }}
{% endif %} {% endif %} {% endblock %}