diff options
author | Bryan Newbold <bnewbold@animus.robocracy.org> | 2008-09-23 18:52:55 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@animus.robocracy.org> | 2008-09-23 18:52:55 -0700 |
commit | 979f5901af8410ff138de0aa41013bfb193060d6 (patch) | |
tree | f3c59f2a2f1da90e13336e16efa4b48003534052 /bn_django/templates/newcomments_table | |
parent | 6a22baa306a72557698d64ac6c09842bed81f66b (diff) | |
download | bnewnet-979f5901af8410ff138de0aa41013bfb193060d6.tar.gz bnewnet-979f5901af8410ff138de0aa41013bfb193060d6.zip |
1.0
Diffstat (limited to 'bn_django/templates/newcomments_table')
-rw-r--r-- | bn_django/templates/newcomments_table | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/bn_django/templates/newcomments_table b/bn_django/templates/newcomments_table index 6c38d10..ab50b7c 100644 --- a/bn_django/templates/newcomments_table +++ b/bn_django/templates/newcomments_table @@ -5,21 +5,9 @@ {{ c.submit_date|date:"F jS" }}</td> <td class="description"> {% if c.user.username %}{{ c.user.username }} - {% else %}anonymous{% endif%} </td> + {% else %}c.user_name{% endif%} </td> <td class="description"> - <a href="{{c.get_content_object.get_absolute_url}}"> - {{ c.content_type.name }}</a></td> - </tr> -{% endfor %} -{% for c in latest_freecomments %} -<tr> - <td class="date"> - {{ c.submit_date|date:"F jS" }}</td> - <td class="description"> - {% if c.person_name %}{{c.person_name}}{% else %}anonymous{% endif %} - </td> - <td class="description"> - <a href="{{c.get_content_object.get_absolute_url}}"> + <a href="{{c.get_content_object_url}}"> {{ c.content_type.name }}</a></td> </tr> {% endfor %} |