{% extends "base.html" %} {% load i18n superarchives %} {% block main-content %}

{% trans "Discussions" %}


    {% for thread in threads.object_list %} {% include "message-preview.html" with doc=thread.latest_message %} {% empty %}

    {% trans "No discussion found" %} {% endfor %}
{% if n_results %}
{% if threads.has_previous %} {% trans "Previous" %} {% endif %} {% trans "Page" %} {{ threads.number }} {% trans "of" %} {{ threads.paginator.num_pages }} {% if threads.has_next %} {% trans "Next" %} {% endif %} {% endif %}
{% endblock %}