Skip to content
Snippets Groups Projects
Commit d6dc7953 authored by Fredrik Jonsson's avatar Fredrik Jonsson
Browse files

Add datetime-local datetime format to DATETIME_INPUT_FORMATS.

parent 643c3a4f
No related branches found
No related tags found
No related merge requests found
......@@ -415,7 +415,7 @@ class CreateReminderForm(forms.ModelForm):
queryset=ApplicationSubmission.objects.filter(),
widget=forms.HiddenInput(),
)
time = forms.DateTimeField(input_formats=['%Y-%m-%dT%H:%M'])
time = forms.DateTimeField()
def __init__(self, instance=None, user=None, *args, **kwargs):
super().__init__(*args, **kwargs)
......
......@@ -323,6 +323,23 @@ SHORT_DATE_FORMAT = 'Y-m-d'
SHORT_DATETIME_FORMAT = 'Y-m-d\TH:i:s'
DATETIME_INPUT_FORMATS = [
'%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59'
'%Y-%m-%d %H:%M:%S.%f', # '2006-10-25 14:30:59.000200'
'%Y-%m-%d %H:%M', # '2006-10-25 14:30'
'%Y-%m-%dT%H:%M', # '2006-10-25T14:30 (this is extra)'
'%Y-%m-%d', # '2006-10-25'
'%m/%d/%Y %H:%M:%S', # '10/25/2006 14:30:59'
'%m/%d/%Y %H:%M:%S.%f', # '10/25/2006 14:30:59.000200'
'%m/%d/%Y %H:%M', # '10/25/2006 14:30'
'%m/%d/%Y', # '10/25/2006'
'%m/%d/%y %H:%M:%S', # '10/25/06 14:30:59'
'%m/%d/%y %H:%M:%S.%f', # '10/25/06 14:30:59.000200'
'%m/%d/%y %H:%M', # '10/25/06 14:30'
'%m/%d/%y', # '10/25/06'
]
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/stable/howto/static-files/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment