12345678910111213141516171819202122232425262728293031323334353637 |
- {% extends "misago/threads/base.html" %}
- {% load i18n misago_stringutils %}
- {% block title %}{% trans "Moderated content" %}{% if page.number > 1 %} ({% blocktrans with page=page.number %}Page {{ page }}{% endblocktrans %}){% endif %} | {{ block.super }}{% endblock title %}
- {% block content %}
- <div class="page-header">
- <div class="container">
- <h1>
- {% trans "Threads with moderated content" %}
- </h1>
- </div>
- </div>
- {{ block.super }}
- {% endblock content %}
- {% block threads-panel %}
- <div class="table-actions">
- {% include "misago/threads/paginator.html" %}
- {% include "misago/threads/sort.html" %}
- </div>
- {{ block.super }}
- <div class="table-actions">
- {% include "misago/threads/paginator.html" %}
- </div>
- {% endblock threads-panel %}
- {% block no-threads %}
- {% trans "There are no threads with moderated posts in forums that you are moderating." %}
- {% endblock no-threads %}
|