summaryrefslogtreecommitdiff
path: root/chimere/main/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'chimere/main/forms.py')
-rw-r--r--chimere/main/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/chimere/main/forms.py b/chimere/main/forms.py
index 2337644..20027ee 100644
--- a/chimere/main/forms.py
+++ b/chimere/main/forms.py
@@ -269,7 +269,7 @@ class FileForm(forms.Form):
return data
class FullFileForm(FileForm):
- name = forms.CharField(label=_(u"Name"))
+ name = forms.CharField(label=_(u"Name"), max_length=150)
def __init__(self, *args, **kwargs):
super(FullFileForm, self).__init__(*args, **kwargs)
self.fields.keyOrder = ['name', 'raw_file']