Display content_override in slot admin list view.
Fix typo and use `content_override` field (instead of `content`) for a Slot's `list_display`.
This commit is contained in:
parent
2717e4c819
commit
6fb529aad2
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ class SlotRoomInline(admin.TabularInline):
|
|||
|
||||
class SlotAdmin(admin.ModelAdmin):
|
||||
list_filter = ("day", "kind")
|
||||
list_display = ("day", "start", "end", "kind", "content")
|
||||
list_display = ("day", "start", "end", "kind", "content_override")
|
||||
inlines = [SlotRoomInline]
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue