From 0f5d2b290f782f66bb5826639315e25a084b03b7 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Sat, 15 Aug 2020 09:38:00 +0000 Subject: [PATCH] Added a 'meeting' list filter to the admin page for ImportantDate. - Legacy-Id: 18376 --- changelog | 2 +- ietf/meeting/admin.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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)