diff options
author | bnewbold <bnewbold@manus.(none)> | 2007-11-28 13:16:34 +1300 |
---|---|---|
committer | bnewbold <bnewbold@manus.(none)> | 2007-11-28 13:16:34 +1300 |
commit | f523f9113cd3c9dffe9e91053d41149cc4640d3a (patch) | |
tree | b2d1c3ff2afd1a47f7b1b72ace2bd06a3f9113e5 /bn_django | |
parent | ab8d75a50330b0700ab6a1f22ec4f87c4beb9501 (diff) | |
download | bnewnet-f523f9113cd3c9dffe9e91053d41149cc4640d3a.tar.gz bnewnet-f523f9113cd3c9dffe9e91053d41149cc4640d3a.zip |
fixed freecomments username display...
Diffstat (limited to 'bn_django')
-rw-r--r-- | bn_django/templates/comment_list | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bn_django/templates/comment_list b/bn_django/templates/comment_list index 84e5d56..4923a5e 100644 --- a/bn_django/templates/comment_list +++ b/bn_django/templates/comment_list @@ -18,7 +18,7 @@ {% for c in free_comments %} <tr><td class="comment_info"> Posted by <span class="comment_user"> - {% if c.user %}{{ c.user }}{% else %}anonymous{% endif %}</span><br /> + {% if c.person_name %}{{ c.person_name}}{% else %}anonymous{% endif %}</span><br /> on <span class="comment_date"> {{ c.submit_date|date:"F j, Y" }}</span><br /> at <span class="comment_time">{{ c.submit_date|date:"H:i T" }}</span> |