summaryrefslogtreecommitdiff
path: root/ishtar/furnitures/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar/furnitures/forms.py')
-rw-r--r--ishtar/furnitures/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar/furnitures/forms.py b/ishtar/furnitures/forms.py
index e6a085c07..998de126a 100644
--- a/ishtar/furnitures/forms.py
+++ b/ishtar/furnitures/forms.py
@@ -302,7 +302,7 @@ class FileForm1(forms.Form):
internal_reference = forms.CharField(label=_(u"Internal reference"),
max_length=60, validators=[models.is_unique(models.File, 'internal_reference')])
creation_date = forms.DateField(label=_(u"Creation date"),
- initial=datetime.datetime.now)
+ initial=datetime.datetime.now, widget=widgets.JQueryDate)
file_type = forms.ChoiceField(label=_("File type"),
choices=models.FileType.get_types())
comment = forms.CharField(label=_(u"Comment"), widget=forms.Textarea,