{% extends "layout.html" %} {% block content %}

Comments

{% for comment in comments %}
{{ comment.created_at|parse-date|date:"dd-MM-yyyy HH:mm" }} from {{ comment.author }}
{% if comment.title %} {{ comment.title }} {% else %} Zum Bild {% endif %}
{{ comment.comment|markdown-to-html|safe }}
{% endfor %}
{% endblock %}