diff options
Diffstat (limited to 'archaeological_operations/forms.py')
| -rw-r--r-- | archaeological_operations/forms.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index 0a8f9d94d..fa5816bf6 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -645,9 +645,9 @@ class ArchaeologicalSiteForm(forms.Form):      reference = forms.CharField(label=_(u"Reference"), max_length=20)      name = forms.CharField(label=_(u"Name"), max_length=200, required=False)      periods = forms.MultipleChoiceField(label=_("Periods"), -                             choices=[], widget=forms.CheckboxSelectMultiple) +                     choices=[], widget=widgets.Select2Multiple, required=False)      remains = forms.MultipleChoiceField(label=_("Remains"), -                             choices=[], widget=forms.CheckboxSelectMultiple) +                     choices=[], widget=widgets.Select2Multiple, required=False)      def __init__(self, *args, **kwargs):          self.limits = {}  | 
