diff options
Diffstat (limited to 'bn_django/templates/newcomments_table')
-rw-r--r-- | bn_django/templates/newcomments_table | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/bn_django/templates/newcomments_table b/bn_django/templates/newcomments_table deleted file mode 100644 index c01863d..0000000 --- a/bn_django/templates/newcomments_table +++ /dev/null @@ -1,16 +0,0 @@ -<table class="listing"> -{% for c in latest_comments %} -<tr> - <td class="date"> - {{ c.submit_date|date:"F jS" }}</td> - <td class="description"> - {% if c.user.username %}{{ c.user.username }} - {% else %}{{c.user_name}}{% endif%} </td> - <td class="description"> - {{ c.comment|truncatewords:10 }} - <td class="description"> - <a href="{{c.get_content_object_url}}"> - {{ c.content_type.name }}</a></td> - </tr> -{% endfor %} -</table> |