{% from "_macros.html" import formatUser, showPost, recursiveComments with context %} {% extends "layout.html" %} {% block content %} {% include "_messages.html" %} {{ showPost(post, "full") }} {% for comment in post.get_comments() %}
{{ recursiveComments(comment) }}
{% endfor %} {% endblock %}