summaryrefslogtreecommitdiffstats
path: root/apps/it/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'apps/it/forms.py')
-rw-r--r--apps/it/forms.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/it/forms.py b/apps/it/forms.py
index 2383374..aa8ab58 100644
--- a/apps/it/forms.py
+++ b/apps/it/forms.py
@@ -38,7 +38,8 @@ class TaskForm(forms.ModelForm):
model = Task
widgets = {
'description': SmallTextarea,
- 'due_date': SelectDateWidget
+ 'due_date': forms.TextInput(attrs={'class': 'datepicker'}),
+ 'completed_at': forms.TextInput(attrs={'class': 'datepicker'})
}
class SimpleTaskForm(forms.ModelForm):