From 953fc002832a9afe59372bf513ef167916608e05 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Wed, 7 Mar 2007 14:56:46 -0800 Subject: comments progress, style changes --- bn_django/templates/newcomments_table | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 bn_django/templates/newcomments_table (limited to 'bn_django/templates/newcomments_table') diff --git a/bn_django/templates/newcomments_table b/bn_django/templates/newcomments_table new file mode 100644 index 0000000..6c38d10 --- /dev/null +++ b/bn_django/templates/newcomments_table @@ -0,0 +1,26 @@ + +{% for c in latest_comments %} + + + + + +{% endfor %} +{% for c in latest_freecomments %} + + + + + +{% endfor %} +
+ {{ c.submit_date|date:"F jS" }} + {% if c.user.username %}{{ c.user.username }} + {% else %}anonymous{% endif%} + + {{ c.content_type.name }}
+ {{ c.submit_date|date:"F jS" }} + {% if c.person_name %}{{c.person_name}}{% else %}anonymous{% endif %} + + + {{ c.content_type.name }}
-- cgit v1.2.3