From c2d55d753123810cb9e6237ff75dd385942ae50b Mon Sep 17 00:00:00 2001 From: Tasos Katsoulas Date: Tue, 13 Jan 2015 12:44:15 +0200 Subject: [PATCH] Display timestamps in admin interface for the events app. --- remo/events/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remo/events/admin.py b/remo/events/admin.py index 9c8783b65..0ac69ed2a 100644 --- a/remo/events/admin.py +++ b/remo/events/admin.py @@ -56,7 +56,7 @@ class EventAdmin(ExportMixin, admin.ModelAdmin): resource_class = EventResource inlines = [AttendanceInline] model = Event - list_display = ('name', 'start', 'end',) + list_display = ('name', 'start', 'end', 'created_on', 'updated_on',) search_fields = ('name', 'country', 'region', 'venue', 'slug',) list_filter = ('has_new_metrics', ('start', admin.DateFieldListFilter), ('end', admin.DateFieldListFilter))