{% extends "postorius/base.html" %} {% load i18n %} {% load bootstrap_tags %} {% load nav_helpers %} {% block head_title %} {% trans 'Info' %} | {{ list.fqdn_listname }} - {{ block.super }} {% endblock %} {% block content %} {% list_nav 'list_summary' 'Summary' %}

{{ list.settings.description }}

{% if list.settings.info %}

{{ list.settings.info }}

{% endif %}

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

{# Archives #} {% if hyperkitty_enabled %} {% if not public_archive and not user.is_authenticated %}

{% trans 'You have to login to visit the archives of this list.' %}

{% else %} {% 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 %} {% endif %}
{# Subscription #} {% if user.is_authenticated %} {% if user_subscribed %}

{% trans 'Subscription / Unsubscription' %}

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

{% url 'user_list_options' list.list_id as user_list_options_url %}

{% blocktrans %} You can manage your subscription here {% endblocktrans %}

{% csrf_token %}

{% elif user_request_pending %}

{% trans "You have a subscription request pending. If you don't hear back soon, please contact the list owners." %}

{% else %}

{% trans 'Subscribe to this list' %}

{% blocktrans with address=list.settings.join_address %} To subscribe you can send an email with 'subscribe' in the subject to {{ address }} or use the form below: {% endblocktrans %}

{% bootstrap_form_horizontal subscribe_form 2 8 'Subscribe' %}
{% endif %} {% else %}

{% trans 'Subscription / Unsubscription' %}

{% blocktrans %} To subscribe or unsubscribe from this list, please log in first. If you have not previously logged in, you may need to set up an account with the appropriate email address. {% endblocktrans %}

{% trans 'Log In' %}


{% blocktrans %} You can also subscribe without creating an account. If you wish to do so, please use the form below. {% endblocktrans%}

{% bootstrap_form_horizontal anonymous_subscription_form 2 8 'Subscribe' %}
{% 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 %}