{% extends 'board_base.html' %} {% load i18n %} {% block sub-title %}{% trans "Moderation queue" %}{% endblock sub-title %} {% block content %}
{% blocktrans with paginator.count as topic_length %}{{ topic_length }} posts found{% endblocktrans %}
{% endif %}
{{ 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 %}
|