diff options
Diffstat (limited to 'archaeological_operations/forms.py')
| -rw-r--r-- | archaeological_operations/forms.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index 8da0cca85..b52496f81 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -1116,6 +1116,7 @@ class ArchaeologicalSiteForm(ManageOldType): HEADERS = {} reference = forms.CharField(label=_("Reference"), max_length=200) name = forms.CharField(label=_("Name"), max_length=200, required=False) + other_names = forms.CharField(label=_("Other names"), required=False) other_reference = forms.CharField(label=_("Other reference"), required=False) periods = forms.MultipleChoiceField( @@ -1214,6 +1215,7 @@ class SiteSelect(GeoItemSelect, DatingSelect): reference = forms.CharField(label=_("Reference"), max_length=200, required=False) name = forms.CharField(label=_("Name"), max_length=200, required=False) + other_names = forms.CharField(label=_("Other names"), required=False) other_reference = forms.CharField(label=_("Other reference"), max_length=200, required=False) types = widgets.Select2SimpleField(label=_("Types"), required=False, @@ -1398,6 +1400,7 @@ class SiteForm(CustomForm, ManageOldType): other_reference = forms.CharField(label=_("Other reference"), required=False) name = forms.CharField(label=_("Name"), max_length=200, required=False) + other_names = forms.CharField(label=_("Other names"), required=False) heritage_interest = forms.MultipleChoiceField( label=_("Heritage interest"), choices=[], widget=widgets.Select2Multiple, required=False) |
