From 3d8790342e2a36154dd3690f9a5beace555ac534 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Wed, 17 Nov 2021 13:14:09 +0100 Subject: [PATCH] add columns to confs --- teleforma/admin.py | 1 + 1 file changed, 1 insertion(+) diff --git a/teleforma/admin.py b/teleforma/admin.py index f1028c73..c720315e 100644 --- a/teleforma/admin.py +++ b/teleforma/admin.py @@ -395,6 +395,7 @@ class ConferenceAdmin(admin.ModelAdmin): search_fields = ['public_id', 'id', 'course__code', 'course__title', 'session'] actions = [publish_conferences, duplicate_conferences] + list_display = ['__str__', 'code', 'comment'] class HomeAdmin(admin.ModelAdmin): -- 2.39.5