Switch to date-based URLs everywhere except the feed URLs of old posts, so I don't spam everyone's feedreader.
1 {% extends "blog/blog.html" %}
3 {% load microformats %}
5 {% block title %}{{ post.title }}{% endblock %}
9 <a href="{% url agdj.blog.views.post_list %}">blog:</a>
10 <a href="{{ post.urls.view }}">{{ post.title }}</a></h1>
15 <a href="{% url index %}">posted
16 <span class="humanize iso8601">{{ post.pub_date|iso8601 }}</span></a></p>
17 <div class="tag-container">tagged:
18 {% with post as object %}
19 {% include "blog/render_post_tags_list.html" %}
26 <div class="post-content">
27 {{ post.source|markdown2 }}
29 <div class="comments">
31 <p>{{ post.spam_count }} spam comments omitted.</p>
32 <form class="add nospam-me" action="" method="post">
33 <fieldset class="collapsed">
34 <legend>Add Comment</legend>
36 use <a href="http://daringfireball.net/projects/markdown/">Markdown</a>
37 formatting. Raw HTML will be stripped.</p>
38 {{ comment_form.as_p }}
39 <input type="submit" class="submit" value="Add Comment" />
42 {% for object in comments %}
43 {% include "blog/render_comment.html" %}