The split entry doesn't work because you can't strip a list

This commit is contained in:
tcely 2025-05-11 06:50:58 -04:00 committed by GitHub
parent 05eb5cdeb0
commit 5bf4eeac48
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -49,10 +49,6 @@ class ScheduleTaskForm(forms.Form):
when = forms.DateTimeField(
label=_('When the task should run'),
required=True,
#widget=forms.SplitDateTimeWidget(
# date_attrs={'type': 'date'},
# time_attrs={'type': 'time'},
#),
widget=forms.DateTimeInput(
attrs={'type': 'datetime-local'},
),