diff options
Diffstat (limited to 'archaeological_files/forms.py')
-rw-r--r-- | archaeological_files/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_files/forms.py b/archaeological_files/forms.py index f155f4261..50d67027c 100644 --- a/archaeological_files/forms.py +++ b/archaeological_files/forms.py @@ -138,7 +138,7 @@ class FileFormGeneral(forms.Form): widget=forms.HiddenInput, required=False) internal_reference = forms.CharField(label=_(u"Other reference"), max_length=60, required=False) - name = forms.CharField(label=_(u"Name"), required=False) + name = forms.CharField(label=_(u"Name"), required=False, max_length=100) creation_date = forms.DateField(label=_(u"Creation date"), initial=get_now, widget=widgets.JQueryDate) file_type = forms.ChoiceField(label=_("File type"), choices=[]) |