{% extends "base.html" %} {% load xhtml11rst %} {% load comments %} {%block title %}{{ entry.title }}{% endblock %} {% block content %}

{{ entry.title }}

{{ entry.content|restructuredtext }}

Posted: {{ entry.publish_date|date:"Y-m-d H:i" }} {% if entry.sections.count %} in {% for section in entry.sections.all %} {% if forloop.first %} {{ section.title }}{% if not forloop.last %}, {% endif %} {% else %} {% if forloop.last %} and {{ section.title }} {% else %} {{ section.title }} {% endif %} {% endif %} {% endfor %} {% endif %} {% get_comment_count for entry as comment_count %} | permalink | Comments: {{ comment_count }}

{% if comment_count %}
{% get_comment_list for entry as comment_list %} {% for comment in comment_list %}

{{ comment.user_name }} - {{ comment.submit_date|date:"Y-m-d H:i" }}

{{ comment.comment }}
{% endfor %}
{% endif %}
{% render_comment_form for entry %}
{% endblock %}