{% extends 'board_base.html' %} {% load i18n %} {% block sub_title %}{% trans "Topics that you are subscribed to" %}{% endblock sub_title %} {% block content %}

{% trans "Topics that you are subscribed to" %}

{% if paginator.count > 0 %}

{% blocktrans trimmed count counter=paginator.count %} {{ counter }} topic found {% plural %} {{ counter }} topics found {% endblocktrans %}

{% endif %}
{% with "pagination-sm justify-content-end" as pagination_size %} {% include "partials/pagination.html" %} {% endwith %}
{% trans "Not topics found." as empty_message %} {% with topic_list_title="Topics" empty_message=empty_message %} {% include "forum_conversation/topic_list.html" %} {% endwith %}
{% with "pagination-sm justify-content-end" as pagination_size %} {% include "partials/pagination.html" %} {% endwith %}
{% endblock content %}