Reformat blog links a bit
[sommitrealweird.git] / sommitrealweird / blog / templates / blog / single_entry_rst.html
index e2bd8c7f5eb2d51ff2b90e862b911e0fa85cc0f8..2536c7521e440da47980beb867cfd125bc0e17fd 100644 (file)
@@ -1,10 +1,13 @@
 {% extends "base.html" %}
 
-{% load markup %}
+{% load xhtml11rst %}
+{% load comments %}
 
 {% block content %}
 <h1>{{ entry.title }}</h1>
+<div class="blogentry">
 {{ entry.content|restructuredtext }}
+</div>
 <p>Posted: {{ entry.publish_date|date:"Y-m-d H:i" }} 
     {% if entry.sections.count %}
     in 
         {% endif %}
     {% endfor %}
     {% endif %}
-    <a href="{{ entry.get_absolute_url }}">permalink</a>
+    {% get_comment_count for entry as comment_count %}
+    | <a href="{{ entry.get_absolute_url }}">permalink</a> | Comments: {{ comment_count }}
 </p>
+{% if comment_count %}
+    <div class="comments">
+    <a name="comments"></a>
+    {% get_comment_list for entry as comment_list %}
+    {% for comment in comment_list %}
+    <div class="comment">
+        <h3>{{ comment.user_name }} - {{ comment.submit_date|date:"Y-m-d H:i" }}</h3>
+        {{ comment.comment }}
+    </div>
+    {% endfor %}
+    </div>
+{% endif %}
+<div class="comment_new">
+    {% render_comment_form for entry %}
+</div>
 {% endblock %}