{% extends 'board_base.html' %} {% load i18n %} {% load forum_member_tags %} {% block sub_title %}{% trans "Moderation queue" %}{% endblock sub_title %} {% block content %}

{% trans "Moderation queue" %}

{% if paginator.count > 0 %}

{% blocktrans with paginator.count as topic_length %}{{ topic_length }} posts found{% endblocktrans %}

{% endif %}
{% with "pagination-sm justify-content-end" as pagination_size %} {% include "partials/pagination.html" %} {% endwith %}

{% trans "Moderation queue" %}

{% trans "Topic" %}
{% trans "Forum" %}
{% for post in posts %}
{{ post.subject }}
{% if post.poster %} {% url 'forum_member:profile' post.poster_id as poster_url %} {% blocktrans trimmed with poster_url=poster_url username=post.poster|forum_member_display_name creation_date=post.created %} By: {{ username }} on {{ creation_date }} {% endblocktrans %} {% else %} {% blocktrans trimmed with poster_username=post.username creation_date=post.created %} By: {{ poster_username }} on {{ creation_date }} {% endblocktrans %} {% endif %}
{% if post.is_topic_head %} {% trans "New topic" %} {% else %} {{ post.topic.subject }} {% endif %}
{% empty %}
{% trans "No posts awaiting approval." %}
{% endfor %}
{% with "pagination-sm justify-content-end" as pagination_size %} {% include "partials/pagination.html" %} {% endwith %}
{% endblock content %}