diff --git a/apps/history/views.py b/apps/history/views.py index 213105996e..7752ea2613 100644 --- a/apps/history/views.py +++ b/apps/history/views.py @@ -28,6 +28,13 @@ def history_list(request): 'name': _(u'date and time'), 'attribute': 'datetime' }, + { + 'name': _(u'object'), + 'attribute': lambda x: '%(label)s' % { + 'url': x.content_object.get_absolute_url() if x.content_object else u'#', + 'label': unicode(x.content_object) if x.content_object else u'' + } + }, { 'name': _(u'summary'), 'attribute': lambda x: '%(label)s' % {