{% extends "hyperkitty/base.html" %} {% load i18n %} {% load hk_generic %} {% load pagination %} {% load cache %} {% block head_title %} {{ list_title }} - {{ mlist.display_name|default:mlist.name }} - {{ block.super }} {% endblock %} {% block head_feed %} {% endblock %} {% block content %}
{% get_current_language as LANGUAGE_CODE %} {# Cache the month list for 24hrs. #} {% cache 86400 month_list LANGUAGE_CODE months_list mlist.name %} {% include 'hyperkitty/fragments/month_list.html' %} {% endcache %}

{% if mlist.display_name %} {{ mlist.display_name }} {% else %} {{ mlist.name|until:"@" }} {% endif %} {{ list_title }}
{% cache 86400 month_list_select LANGUAGE_CODE months_list mlist.name %} {% include 'hyperkitty/fragments/month_list.html' with show_select='True' %} {% endcache %}

{{ mlist.name }}
    {% if participants_count %}
  • {{ participants_count }} {% trans "participants" %}
  • {% endif %}
  • {{ threads.paginator.count }} {% trans "discussions" %}
{% for thread in threads %} {% include "hyperkitty/threads/summary_thread_large.html" %} {% empty %}

{% trans "Sorry no email threads could be found" %} {{ no_results_text }}.

{% endfor %} {# Cache the pagination template rendering for the mailing list for 24hrs. #} {% cache 86400 threads_paginator threads LANGUAGE_CODE %} {% paginator threads bydate=True %} {% endcache %}
{% endblock %} {% block additionaljs %} {% endblock %}