{% extends "hyperkitty/base.html" %} {% load i18n %} {% load hk_generic %} {% load pagination %} {% load static %} {% block head_title %} {% trans 'Available lists' %} - {{ block.super }} {% endblock %} {% block additional_og %} {% endblock %} {% block content %}

{% trans 'Available lists' %}

{# This version of the sort-by options shows up on larger screens. #} {# This version of the sort-by options shows up on tablets/mobile phones. #}
{% if all_lists %}

{% endif %}
{% if all_lists %} {% for mlist in all_lists %} {% endfor %}
{% ifchanged mlist.name|first %}{% endifchanged %} {% if mlist.is_new %} {% trans 'new' %} {% endif %} {% if mlist.display_name %} {{ mlist.display_name }} {% else %} {{ mlist.name|until:"@" }} {% endif %} {{ mlist.name }} {% if mlist.is_private %} {% trans "private" %} {% elif mlist.recent_threads_count == 0 %} {% trans "inactive" %} {% endif %}
{{ mlist.description|default_if_none:"" }}
{% trans 'Loading...' %}
{{ mlist.recent_participants_count|default_if_none:"..." }} {{ mlist.recent_threads_count|default_if_none:"..." }}
{% else %}

{% trans "No archived list yet." %}

{% endif %}
{% if all_lists %} {% for mlist in all_lists %} {% endfor %}
{% trans 'List' %} {% trans 'Description' %} {% trans 'Activity in the past 30 days' %}
{% ifchanged mlist.name|first %}{% endifchanged %} {% if mlist.is_new %} {% trans 'new' %} {% endif %} {% if mlist.display_name %} {{ mlist.display_name }} {% else %} {{ mlist.name|until:"@" }} {% endif %} {% if mlist.is_private %} {% trans "private" %} {% elif mlist.recent_threads_count == 0 %} {% trans "inactive" %} {% endif %} {{ mlist.name }} {{ mlist.description|default_if_none:"" }}
  • {{ mlist.recent_participants_count|default_if_none:"..." }} {% trans 'participants' %}
  • {{ mlist.recent_threads_count|default_if_none:"..." }} {% trans 'discussions' %}
{% trans 'Loading...' %}
{% else %}

{% trans "No archived list yet." %}

{% endif %}
{% paginator all_lists %}
{% endblock %} {% block additionaljs %} {% endblock %}