{% extends 'board_base.html' %} {% load i18n %} {% block sub-title %}{% trans "View my messages" %}{% endblock sub-title %} {% block content %}

{% trans "View my messages" %}

{% if paginator.count > 0 %}

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

{% endif %}
{% with "pagination-sm" 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" as pagination_size %} {% include "partials/pagination.html" %} {% endwith %}
{% endblock content %}