{% extends "base.html" %} {% load comments %} {% block title %}Blog Entry - {{ object.title|escape }}{% endblock %} {% block content %}

{{ object.title }}

{{ object.body }}

{% get_free_comment_list for blog.entry object.id as comment_list %}

Comments

{% for comment in comment_list %}
Comment #:
{{ forloop.counter }}
Person:
{{ comment.person_name|escape }}
E-mail:
{{comment.person_email|escape }}
URL:
{{comment.person_url|escape }}
Date:
{{ comment.submit_date|date:"F j, Y" }} at {{ comment.submit_date|date:"P" }}:
Comment:
{{ comment.comment|escape|urlizetrunc:40|linebreaks }}
{% endfor %}

Post a comment

{% free_comment_form for blog.entry object.id %} {% endblock %}