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
commit8fd70a2b09e6745d461bab2a0414a2ac09316a32 (patch)
tree817aef1eaf3fed807d4b8d218b304ac21f924ea7 /archaeological_operations/forms.py
parent960ab12d2d8b58003190e8d7fe0e46b525a00a37 (diff)
downloadIshtar-8fd70a2b09e6745d461bab2a0414a2ac09316a32.tar.bz2
Ishtar-8fd70a2b09e6745d461bab2a0414a2ac09316a32.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,