{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "_macros.html" as macros %} {% block title %}Flasky{% endblock %} {% block page_content %} {% include '_posts.html' %}

Comments

{% if current_user.can(Permission.COMMENT) %}
{{ wtf.quick_form(form) }}
{% endif %} {% include '_comments.html' %} {% if pagination %} {% endif %} {% endblock %}