Skip to content
Snippets Groups Projects
Commit eaf28302 authored by Andreas Hubel's avatar Andreas Hubel
Browse files

chore(admin): display location of Events, not only room

parent e3fabdaa
No related branches found
No related tags found
No related merge requests found
...@@ -651,12 +651,13 @@ class EventAdmin(admin.ModelAdmin): ...@@ -651,12 +651,13 @@ class EventAdmin(admin.ModelAdmin):
'is_public', 'is_public',
'kind', 'kind',
'room', 'room',
'location',
'schedule_start', 'schedule_start',
'schedule_duration', 'schedule_duration',
'get_is_imported', 'get_is_imported',
] ]
list_display_links = ['name'] list_display_links = ['name']
list_filter = ['conference', 'track', 'is_public', 'kind', 'room', IsImportedListFilter] list_filter = ['conference', 'track', 'is_public', 'kind', 'room', 'location', IsImportedListFilter]
save_as = True save_as = True
search_fields = ['name', 'abstract', 'description_de', 'description_en'] search_fields = ['name', 'abstract', 'description_de', 'description_en']
inlines = [ inlines = [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment