diff options
Diffstat (limited to 'archaeological_finds/forms.py')
| -rw-r--r-- | archaeological_finds/forms.py | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py index 82c32b2dc..ae91b8383 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -126,6 +126,7 @@ class FindSelect(TableSelect):      dating__period = forms.ChoiceField(label=_(u"Period"), choices=[])      # TODO search by warehouse      material_type = forms.ChoiceField(label=_(u"Material type"), choices=[]) +    object_types = forms.ChoiceField(label=_(u"Object type"), choices=[])      conservatory_state = forms.ChoiceField(label=_(u"Conservatory state"),                                             choices=[])      base_finds__find__description = forms.CharField(label=_(u"Description")) @@ -144,6 +145,8 @@ class FindSelect(TableSelect):              models.ConservatoryState.get_types()          self.fields['conservatory_state'].help_text = \              models.ConservatoryState.get_help() +        self.fields['object_types'].choices = \ +            models.ObjectType.get_types()  class FindFormSelection(forms.Form): | 
