{% 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 post.is_topic_head and poll %}

{{ poll.question }}


{% if poll.max_options == 1 %} {% blocktrans trimmed %} 1 option may be selected {% endblocktrans %} {% else %} {% blocktrans trimmed with max_options=poll.max_options %} Up to {{ max_options }} options may be selected {% endblocktrans %} {% endif %}
{% for option in poll_options %} {% if forloop.first or not forloop.counter|divisibleby:2 %}
{% endif %}
{% if poll.max_options == 1 %}
{% else %}
{% endif %}
{% if forloop.last or forloop.counter|divisibleby:2 %}
{% endif %} {% endfor %}
{% endif %}

{{ post.subject }}

{% spaceless %}   {% 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 %} {% endspaceless %}

{{ post.content.rendered }}
{% include "forum_conversation/forum_attachments/attachments_detail.html" %} {% if post.enable_signature and post.poster.forum_profile.signature %}
{{ post.poster.forum_profile.signature.rendered }}
{% endif %}
{% if previous_posts %}

{% trans "Topic review" %} – {{ post.topic.subject }}

{% for post in previous_posts %}

{{ post.subject }}

{% spaceless %}   {% 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 %} {% endspaceless %}

{{ post.content.rendered }}
{% include "forum_conversation/forum_attachments/attachments_detail.html" %}
{% endfor %}
{% endif %} {% endblock content %}