Made comment sorted by oldest first, made comment subtemplate scrollable

This commit is contained in:
Roberto Rosario
2011-05-01 15:53:45 -04:00
parent c14c9c11c7
commit 4fffefd367

View File

@@ -12,9 +12,11 @@ def get_comments_subtemplate(obj):
'name': 'generic_list_subtemplate.html', 'name': 'generic_list_subtemplate.html',
'context': { 'context': {
'title': _(u'comments'), 'title': _(u'comments'),
'object_list': Comment.objects.for_model(obj), 'object_list': Comment.objects.for_model(obj).order_by('-submit_date'),
'hide_link': True, 'hide_link': True,
'hide_object': True, 'hide_object': True,
'navigation_object_links': [comment_delete], 'navigation_object_links': [comment_delete],
'scrollable_content': True,
'scrollable_content_height': '200px',
} }
} }