1 {% extends "base.html" %}
6 {%block title %}{{ entry.title }}{% endblock %}
9 <h1>{{ entry.title }}</h1>
10 <div class="blogentry">
11 {{ entry.content|restructuredtext }}
13 <p>Posted: {{ entry.publish_date|date:"Y-m-d H:i" }}
14 {% if entry.sections.count %}
16 {% for section in entry.sections.all %}
17 {% if forloop.first %}
18 <a href="{{ section.get_absolute_url }}">{{ section.title }}</a>{% if not forloop.last %}, {% endif %}
21 and <a href="{{ section.get_absolute_url }}">{{ section.title }}</a>
23 <a href="{{ section.get_abolute_url }}">{{ section.title }}</a>
28 {% get_comment_count for entry as comment_count %}
29 | <a href="{{ entry.get_absolute_url }}">permalink</a> | Comments: {{ comment_count }}
31 {% if comment_count %}
32 <div class="comments">
33 <a name="comments"></a>
34 {% get_comment_list for entry as comment_list %}
35 {% for comment in comment_list %}
37 <h3>{{ comment.user_name }} - {{ comment.submit_date|date:"Y-m-d H:i" }}</h3>
43 <div class="comment_new">
44 {% render_comment_form for entry %}