{% extends 'base.html' %} {% load i18n tz superarchives %} {% block main-content %} {% block mailinglist_view_title %}

{% trans "Groups"|title %}



{{ page_obj.paginator.count }} {% trans "messages found" %}


{{ mailinglist.name|lower }} {% if mailinglist.description %}({{ mailinglist.description }}){% endif %}

{% trans "Order by" %}


{% endblock %} {% block mailinglist_view_thread_list %} {% for thread in thread_list %}
{{ thread.latest_message.received_time|date:"d F Y" }} {% trans "at" %} {{thread.latest_message.received_time|date:"h:m" }} - {{thread.latest_message.author }}

{{ thread.latest_message.subject_clean }}

{% with thread.latest_message.body|truncatechars:"85" as description %} {{description | default_if_none:"a"}}
{% endwith %}

{% endfor %} {% endblock %} {% block mailinglist_view_paginator %} {% if page_obj.has_other_pages %}
{% endif %} {% endblock %} {% endblock %}