summaryrefslogtreecommitdiff
path: root/archaeological_operations/forms.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2018-10-23 19:58:27 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2018-10-23 19:58:27 +0200
commit7d5115e9e063c0f5bc46a585dbc3f44bd10017c2 (patch)
tree817aef1eaf3fed807d4b8d218b304ac21f924ea7 /archaeological_operations/forms.py
parent5531f4d023d0d62d915b00a9cd103ab06d98b585 (diff)
downloadIshtar-7d5115e9e063c0f5bc46a585dbc3f44bd10017c2.tar.bz2
Ishtar-7d5115e9e063c0f5bc46a585dbc3f44bd10017c2.zip
Site form: fix reference length
Diffstat (limited to 'archaeological_operations/forms.py')
-rw-r--r--archaeological_operations/forms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py
index 69edc4e1f..681dceeb6 100644
--- a/archaeological_operations/forms.py
+++ b/archaeological_operations/forms.py
@@ -1144,7 +1144,7 @@ class PeriodForm(CustomForm, ManageOldType, forms.Form):
class ArchaeologicalSiteForm(ManageOldType):
- reference = forms.CharField(label=_(u"Reference"), max_length=20)
+ reference = forms.CharField(label=_(u"Reference"), max_length=200)
name = forms.CharField(label=_(u"Name"), max_length=200, required=False)
periods = forms.MultipleChoiceField(
label=_("Periods"), choices=[], widget=widgets.Select2Multiple,