diff options
author | Bryan Newbold <bnewbold@animus.robocracy.org> | 2009-04-16 08:44:16 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@animus.robocracy.org> | 2009-04-16 08:44:16 -0700 |
commit | fe70e8db7b65562bd532a1aacacb759df6f7b130 (patch) | |
tree | a267d0a86aeeedc8f4d772f6841fc9f96d0c555c | |
parent | 6130561fe58d693d2d8fec500cf4733f33099ce9 (diff) | |
download | bnewnet-fe70e8db7b65562bd532a1aacacb759df6f7b130.tar.gz bnewnet-fe70e8db7b65562bd532a1aacacb759df6f7b130.zip |
something
-rw-r--r-- | bn_django/journal/templates/journal/microentry_list.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bn_django/journal/templates/journal/microentry_list.html b/bn_django/journal/templates/journal/microentry_list.html index 54e63e5..354ebf6 100644 --- a/bn_django/journal/templates/journal/microentry_list.html +++ b/bn_django/journal/templates/journal/microentry_list.html @@ -19,12 +19,12 @@ This page has an <a href="/journal/rss/latest_microentries/">RSS feed</a>. {% if object_list %} {% for item in object_list %} <b>{{item.date|date:"D, d/m/Y @H:i"}}: - <a href="{{ item.get_absolute_url }}"> - {% if item.title %}{{item.title}}{%else%}[Untitled]{%endif%}</a></b> + {% if item.title %} + <a href="{{ item.get_absolute_url }}"> {{item.title}}</a>{%endif%}</b> <p style="padding-left:30px"> {{ item.html_content|truncatewords_html:256 }} {% get_comment_count for item as comment_count %} - (<a href="{{ item.get_absolute_url }}#commentary">{{ comment_count }} comments</a>) + (<a href="{{ item.get_absolute_url }}#commentary">{{ comment_count }} comments</a>, <a href="{{ item.get_absolute_url }}">link</a>) </p> {% endfor %} {% else %} |