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

{{ list.settings.description }}

{% if list.settings.info %} {% autoescape off %} {% markdown_value list.settings.info %} {% endautoescape %} {% 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 sign in to visit the archives of this list.' %}

{% else %} {% url 'hk_list_overview' list.fqdn_listname as hyperkitty_list_url %}

{% trans 'Archives' %}

{% blocktrans %} Archives {% endblocktrans %}

{% endif %} {% endif %}
{# Subscription #} {% if user.is_authenticated %} {% if user_subscribed %}

{% trans 'Subscription / Unsubscription' %}

{% for subscription in user_subscriptions %} {% if subscription.subscribed_preferred %} {% else %} {% endif %} {% endfor %}
{% trans 'Subscription Address' %} {% trans 'Delivery status' %} {% trans 'Delivery mode' %} {% trans 'Manage' %} {% trans 'Unsubscribe' %}
{% trans 'Primary Address' %} ({{ subscription.subscribed_address }}){{ subscription.subscribed_address }}{{ subscription.delivery_status }} {{ subscription.delivery_mode }} {% url 'user_list_options' subscription.subscriber as user_list_options_url %} {% trans 'Manage Subscription' %}
{% csrf_token %}
{% elif not user_request_pending %}

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

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

{% endif %} {% else %}

{% trans 'Subscription / Unsubscription' %}

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

{% trans 'Sign In' %}

{% if anon_subscribe %}

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

{% trans 'List metrics' %}

{% trans 'Created at' %}
{% if list.settings.created_at %}{{ list.settings.created_at|datetime_parse|localtime|date:"DATETIME_FORMAT" }}{% endif %}
{% trans 'Last post at' %}
{% if list.settings.last_post_at%} {{ list.settings.last_post_at|datetime_parse|localtime|date:"DATETIME_FORMAT" }} {% else %} {% trans 'None' %} {% endif %}
{% trans 'Digest last sent at' %}
{% if list.settings.digest_last_sent_at %} {{ list.settings.digest_last_sent_at|datetime_parse|localtime|date:"DATETIME_FORMAT" }} {% else %} {% trans 'None' %} {% endif %}
{% trans 'Volume' %}
{{ list.settings.volume }}
{% endif %} {% endif %} {% endblock %}