{% extends "base.html" %} {% load url from future %} {% load i18n %} {% load hk_generic %} {% block title %} {% trans 'Available lists' %} - {{ app_name|title }} {% endblock %} {% block content %}

{% trans 'Lists' %}

{% trans 'Available lists' %} {% if sort_mode == 'active' %} ({% trans 'most active first' %}) {% elif sort_mode == 'popular' %} ({% trans 'most popular first' %}) {% elif sort_mode == 'creation' %} ({% trans 'newest first' %}) {% 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 %} private {% elif mlist.recent_threads_count == 0 %} inactive {% endif %}
{{ mlist.name }}
{{ mlist.description|default_if_none:"" }}
Loading...
  • {% if mlist.can_view %} {{ mlist.recent_participants_count|default_if_none:"..." }} {% else %} ... {% endif %} participants
  • {% if mlist.can_view %} {{ mlist.recent_threads_count|default_if_none:"..." }} {% else %} ... {% endif %} discussions
{% else %}

No archived list yet.

{% endif %}
{% if all_lists|length > 10 %}

{% endif %}
{% endblock %} {% block additionaljs %} {% endblock %}