You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
411 B

  1. {% extends "base.html" %}
  2. {% import "_macros.html" as macros %}
  3. {% block title %}Flasky - Comment Moderation{% endblock %}
  4. {% block page_content %}
  5. <div class="page-header">
  6. <h1>Comment Moderation</h1>
  7. </div>
  8. {% set moderate = True %}
  9. {% include '_comments.html' %}
  10. {% if pagination %}
  11. <div class="pagination">
  12. {{ macros.pagination_widget(pagination, '.moderate') }}
  13. </div>
  14. {% endif %}
  15. {% endblock %}