{% extends "base.html" %} {% block content %} {% autoescape off %}

{{blogentry.header}}

posted by {{blogentry.user.username}} on {{blogentry.date}}

{{blogentry.intro|linebreaks}}
{{blogentry.body|linebreaks}}

{% endautoescape %} Comments total: {{blogentry.blogcomment_set.all.count}}
{% if commentform %}
{% csrf_token %} Your Name:
{{ commentform.guestname }}
Your Comment:
{{ commentform.blogcomment }}
{% endif %}

{% for comment in blogentry.blogcomment_set.all %} {% if comment.user %} {{ comment.user.username }} says: {% else %} {{ comment.guestname }} says: {% endif %}
{{ comment.date }}
{{ comment.body|linebreaks }}
{% endfor %} {% if false %}

{{newscomment.user.username}}
{{ newscomment.commenttext|linebreaks|urlize }}
Datum: {{newscomment.date}}
{% if commentform %} {% else %} {% endif %}
{{user.username}}
{% csrf_token %} {{ commentform.newscomment }}
Please log in to post.
{% endif %} {% endblock %}