{% extends 'board_base.html' %} {% load i18n %} {% block sub_title %}{% trans "View unread topics" %}{% endblock sub_title %} {% block content %}

{% trans "View unread topics" %}

{% if paginator.count > 0 %}

{% blocktrans count topic_length=paginator.count %} {{ topic_length }} unread topic found{% plural %}{{ topic_length }} unread topics found {% endblocktrans %}

{% endif %}
{% with "pagination-sm justify-content-end" as pagination_size %} {% include "partials/pagination.html" %} {% endwith %}
{% trans "There are no unread topics." as empty_message %} {% with topic_list_title="Topics" empty_message=empty_message force_all_unread=True %} {% include "forum_conversation/topic_list.html" %} {% endwith %}
{% with "pagination-sm" as pagination_size %} {% include "partials/pagination.html" %} {% endwith %}
{% endblock content %}