From: Yoan Le Clanche Date: Tue, 15 Oct 2024 11:43:50 +0000 (+0200) Subject: Improve admin user page performance X-Git-Tag: 2.8.1-pro~11 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=5a6df81a6dea68551bca2b89274b545b5f986156;p=teleforma.git Improve admin user page performance --- diff --git a/teleforma/admin.py b/teleforma/admin.py index ae0df5cb..4c2baac1 100644 --- a/teleforma/admin.py +++ b/teleforma/admin.py @@ -23,6 +23,7 @@ class AEStudentProfileInline(admin.StackedInline): class AuditorProfileInline(admin.StackedInline): model = Auditor # filter_vertical = ['seminars', 'conferences'] + autocomplete_fields = ['seminars', 'conferences'] class Media: css = { 'all': ('admin/extra.css',) }