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.

21 lines
563 B

  1. {% extends "base.html" %}
  2. {% import "bootstrap/wtf.html" as wtf %}
  3. {% import "_macros.html" as macros %}
  4. {% block title %}Flasky{% endblock %}
  5. {% block page_content %}
  6. {% include '_posts.html' %}
  7. <h4 id="comments">Comments</h4>
  8. {% if current_user.can(Permission.COMMENT) %}
  9. <div class="comment-form">
  10. {{ wtf.quick_form(form) }}
  11. </div>
  12. {% endif %}
  13. {% include '_comments.html' %}
  14. {% if pagination %}
  15. <div class="pagination">
  16. {{ macros.pagination_widget(pagination, '.post', fragment='#comments', id=posts[0].id) }}
  17. </div>
  18. {% endif %}
  19. {% endblock %}