From eea30a46b0de723740054c0057ebe476eef12da8 Mon Sep 17 00:00:00 2001 From: moanos Date: Thu, 30 May 2024 10:48:57 +0200 Subject: [PATCH] refactor: Remove date widget to allow editing --- src/fellchensammlung/forms.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/fellchensammlung/forms.py b/src/fellchensammlung/forms.py index b684370..f7b0f63 100644 --- a/src/fellchensammlung/forms.py +++ b/src/fellchensammlung/forms.py @@ -38,9 +38,7 @@ class AdoptionNoticeForm(forms.ModelForm): class Meta: model = AdoptionNotice fields = ['name', "group_only", "further_information", "description", "searching_since"] - widgets = { - 'searching_since': DateInput(), - } + class ImageForm(forms.ModelForm):