Skip to content
This repository has been archived by the owner on Oct 28, 2020. It is now read-only.

Commit

Permalink
Merge pull request #904 from akatsoulas/events-admin-timestamps
Browse files Browse the repository at this point in the history
Display timestamps in admin interface for the events app.
  • Loading branch information
akatsoulas committed Jan 13, 2015
2 parents b049df6 + c2d55d7 commit 71e2d0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion remo/events/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 71e2d0c

Please sign in to comment.