Added a 'meeting' list filter to the admin page for ImportantDate.

- Legacy-Id: 18376
This commit is contained in:
Henrik Levkowetz 2020-08-15 09:38:00 +00:00
parent f93270e0f6
commit 0f5d2b290f
2 changed files with 2 additions and 1 deletions

View file

@ -1,6 +1,6 @@
ietfdb (7.14.0) ietf; urgency=medium
**Updated layout of the new schedule editor, cookie fixes, and yangdoctor notifications**
**Updated new schedule editor, cookie fixes, and yangdoctor notifications**
* Merged in /branch/iola/meeting-improvement-r17835@18048. This provides
a new snapshot of the new schedule editor work, with improved edit page

View file

@ -176,6 +176,7 @@ admin.site.register(SessionPresentation, SessionPresentationAdmin)
class ImportantDateAdmin(admin.ModelAdmin):
model = ImportantDate
list_filter = ['meeting', ]
list_display = ['meeting', 'name', 'date']
admin.site.register(ImportantDate,ImportantDateAdmin)