aboutsummaryrefslogtreecommitdiffstats
path: root/jm2l/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'jm2l/forms.py')
-rw-r--r--jm2l/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/jm2l/forms.py b/jm2l/forms.py
index 304a060..4109527 100644
--- a/jm2l/forms.py
+++ b/jm2l/forms.py
@@ -60,7 +60,7 @@ class StaffTasks(MyBaseForm):
name = TextField(u'Nom de la tâche', [validators.Required()])
area_uid = SelectField(u'Pôle concerné', coerce=int )
closed_by = SelectField(u'Assigné à', coerce=int )
- due_date = DateField(u'Date prévue', format='%d/%m/%Y')
+ due_date = DateField(u'Date prévue', format='%Y-%m-%d')
description = TextAreaField('Description', [validators.optional(), validators.Length(max=1000000)],
filters=[strip_filter])