From 0763fbce60d61ae5f4e642585615422bca2ebe3c Mon Sep 17 00:00:00 2001 From: Jean-Marie Favreau Date: Fri, 16 Feb 2024 17:15:46 +0100 Subject: [PATCH] =?UTF-8?q?on=20rend=20plus=20explicite=20le=20bouton=20de?= =?UTF-8?q?=20cr=C3=A9ation=20d'=C3=A9tiquettes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/agenda_culturel/forms.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/agenda_culturel/forms.py b/src/agenda_culturel/forms.py index 7e600c3..f98ea50 100644 --- a/src/agenda_culturel/forms.py +++ b/src/agenda_culturel/forms.py @@ -29,6 +29,9 @@ class RecurrentImportForm(ModelForm): class Meta: model = RecurrentImport fields = '__all__' + widgets = { + 'defaultTags': DynamicArrayWidgetTags(), + } class EventForm(ModelForm):