{% 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 %}

{% trans 'Summary' %}

{{list.display_name }} - {{ list.fqdn_listname }}

{{ list.settings.description }}

{% 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 %} {% if user.is_authenticated %} {% if user.is_list_owner or user.is_superuser %}

{{ list.settings.created_at }}

{{ list.settings.last_post_at }}

{{ list.settings.digest_last_sent_at }}

{{ list.settings.volume }}


{% endif %} {% endif %} {% trans 'To contact the list owners, use the following email address' %}: {{ list.settings.owner_address }} {% 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_erros }}
{% 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_erros }}
{% 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 %}
{% endblock %}