{% extends "exampleblog_base.html" %} {% load threadedcommentstags %} {% load voting_tags %} {% block head %} {% endblock %} {% block content %}

{{ post.title }}

Posted on {{ post.date_posted|date }} at {{ post.date_posted|time }}
{{ post.body|linebreaks }}
{% if user.is_authenticated %} Logged in as {{ user.username }} {% else %} {% endif %}
{% for comment,score,vote in comments_and_scores %} {% with comment.depth as depth %} {% include "exampleblog/comment_partial.html" %} {% endwith %} {% endfor %}
{% if user.is_authenticated %}

Reply to original blog entry:

{% endif %} {% endblock %}