{% 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 with paginator.count as topic_length %}{{ topic_length }} unread topics found{% endblocktrans %}

{% endif %}
{% with "pagination-sm" 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 %}