{% extends 'board_base.html' %} {% load i18n %} {% 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" as pagination_size %} {% include "partials/pagination.html" %} {% endwith %}

{% trans "Moderation queue" %}

{% 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.username 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 %}
{% empty %}
{% trans "Not posts awaiting approval." %}
{% endfor %}
{% with "pagination-sm" as pagination_size %} {% include "partials/pagination.html" %} {% endwith %}
{% endblock content %}