{% extends 'weblog/base.html' %} {% load comments %} {% load markup %} {% block title %}{{ block.super }} » {{ post.title }}{% endblock %} {% block extra_head %}{% endblock %} {% block content %}
{% with post.get_next_by_pub_date as next %}{% if next %} « {{ next.title }} {% endif %}{% endwith %} {% with post.get_previous_by_pub_date as prev %}{% if prev %} {{ prev.title }} » {% endif %}{% endwith %}
.
{% include 'weblog/_post_body.html' %}

{{ comment_count }} Comment{{ comment_count|pluralize }}

{% get_comment_list for post as comment_list %}
    {% for comment in comment_list %} {% if comment.is_public %}
  1. {% if forloop.last %}{% endif %} {% if comment.user %}{% endif %} {% if comment.user_url %} {{ comment.name }} {% else %} {{ comment.name }} {% endif %} {% if comment.user %}{% endif %} on {{ comment.submit_date|date:'F j, Y \a\t H:i' }}:

    {{ comment.comment|restructuredtext }}
  2. {% endif %} {% endfor %}
{% if post.enable_comments %}

New comment

{% get_comment_form for post as form %} {% include 'comments/_comment_form.html' %}
{% endif %} {% endblock content %}