diff --git a/changelog b/changelog index afaf2cdea..28e74d8b3 100644 --- a/changelog +++ b/changelog @@ -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 diff --git a/ietf/meeting/admin.py b/ietf/meeting/admin.py index 2c27846d5..c2e8ec31d 100644 --- a/ietf/meeting/admin.py +++ b/ietf/meeting/admin.py @@ -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)