fix: js for milestone datetime picker

This commit is contained in:
Élie Bouttier 2014-09-06 23:16:36 -07:00
parent 9bbabd9c69
commit b686c5fd57
5 changed files with 21 additions and 13 deletions

View file

@ -40,5 +40,5 @@ class MilestoneForm(forms.ModelForm):
model = Milestone
fields = ['name', 'due_date']
widgets = {
'due_date': DateTimePicker(format="%Y-%m-%d %H:%M"),
'due_date': DateTimePicker(options=False),
}