diff options
author | Bryan Newbold <bnewbold@animus.robocracy.org> | 2009-01-04 11:45:10 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@animus.robocracy.org> | 2009-01-04 11:45:10 -0800 |
commit | 8dce37b90c36c849e428cab6db9e883cf0cd21a4 (patch) | |
tree | ceec3866cbf95f4d2d5018e9a514515cc35898f6 /bn_django/templates/newcomments_table | |
parent | 979f5901af8410ff138de0aa41013bfb193060d6 (diff) | |
download | bnewnet-8dce37b90c36c849e428cab6db9e883cf0cd21a4.tar.gz bnewnet-8dce37b90c36c849e428cab6db9e883cf0cd21a4.zip |
un-escaped some html with |safe
Diffstat (limited to 'bn_django/templates/newcomments_table')
-rw-r--r-- | bn_django/templates/newcomments_table | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bn_django/templates/newcomments_table b/bn_django/templates/newcomments_table index ab50b7c..2349dd0 100644 --- a/bn_django/templates/newcomments_table +++ b/bn_django/templates/newcomments_table @@ -5,7 +5,7 @@ {{ c.submit_date|date:"F jS" }}</td> <td class="description"> {% if c.user.username %}{{ c.user.username }} - {% else %}c.user_name{% endif%} </td> + {% else %}{{c.user_name}}{% endif%} </td> <td class="description"> <a href="{{c.get_content_object_url}}"> {{ c.content_type.name }}</a></td> |