diff options
Diffstat (limited to 'archaeological_operations/forms.py')
| -rw-r--r-- | archaeological_operations/forms.py | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index 32ec6f826..18534fe9d 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -1221,6 +1221,8 @@ class ArchaeologicalSiteForm(ManageOldType):      HEADERS = {}      reference = forms.CharField(label=_(u"Reference"), max_length=200)      name = forms.CharField(label=_(u"Name"), max_length=200, required=False) +    other_reference = forms.CharField(label=_(u"Other reference"), +                                      required=False)      periods = forms.MultipleChoiceField(          label=_("Periods"), choices=[], widget=widgets.Select2Multiple,          required=False) @@ -1374,6 +1376,8 @@ class SiteSelect(HistorySelect):      reference = forms.CharField(label=_(u"Reference"), max_length=200,                                  required=False)      name = forms.CharField(label=_(u"Name"), max_length=200, required=False) +    other_reference = forms.CharField(label=_("Other reference"), +                                      max_length=200, required=False)      periods = forms.ChoiceField(label=_(u"Periods"), choices=[], required=False)      remains = forms.ChoiceField(label=_(u"Remains"), choices=[], required=False)      cultural_attributions = forms.ChoiceField( @@ -1487,6 +1491,8 @@ class SiteForm(CustomForm, ManageOldType):      pk = forms.IntegerField(required=False, widget=forms.HiddenInput)      reference = forms.CharField(label=_(u"Reference"), max_length=200)      name = forms.CharField(label=_(u"Name"), max_length=200, required=False) +    other_reference = forms.CharField(label=_("Other reference"), +                                      required=False)      period = forms.MultipleChoiceField(          label=_("Periods"), choices=[], widget=widgets.Select2Multiple,          required=False) | 
