{% block title %}{{ flatpage.title }}{% endblock %}
{{ flatpage.content }}
{% if flatpage.enable_comments %}
{% load comments %}
{% get_comment_list for flatpage as comments %}
{% for comment in comments %}
{% if not comment.is_removed %}
{{ comment.comment|linebreaks }}
Zadal {{ comment.user_name }} v {{ comment.submit_date|time }}
{% endif %}
{% endfor%}
{% get_comment_form for flatpage as form %}
{% include "comments/form.html" %}
{% endif %}
{% endblock %}