{% comment %} Copyright (c) 2006-2007, PreFab Software Inc. Copyright (c) 2006, Andrew Gwozdziewycz All rights reserved. {% endcomment %} {% extends "blog/blog_base.html" %} {% load blog_extras %} {% load comment_honeypot %} {% load comment_utils %} {% block "browsertitle" %} {{ object.headline }} {% endblock %} {% block "contentbody" %} {% include "blog/includes/post.html" %}
{% get_public_comment_list for blog.entry object.id as comment_list %} {% if comment_list %}
Comments {% for comment in comment_list %} {% include "comments/comment_display.html" %} {% endfor %}
{% endif %} {% get_public_trackback_list for blog.entry object.id as trackback_list %} {% if trackback_list %}
Trackbacks {% for trackback in trackback_list %} {% include "comments/trackback_display.html" %} {% endfor %}
{% endif %}
Add Comment {% comment_form for blog.entry object.id %}
{% endblock %} {% block "taglist" %} {% include "blog/includes/popular_tags.html" %} {% endblock %}