diff options
Diffstat (limited to 'archaeological_finds/forms.py')
| -rw-r--r-- | archaeological_finds/forms.py | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py index 7660eaacb..975772bac 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -71,6 +71,7 @@ class FindForm(forms.Form):      weight = FloatField(label=_(u"Weight (g)"), required=False)      find_number = forms.IntegerField(label=_(u"Find number"), required=False)      mark = forms.CharField(label=_("Mark"), required=False) +    checked = forms.ChoiceField(label=_("Check"))      comment = forms.CharField(label=_("Comment"), required=False,                                widget=forms.Textarea)      dating_comment = forms.CharField( @@ -85,6 +86,7 @@ class FindForm(forms.Form):      def __init__(self, *args, **kwargs):          super(FindForm, self).__init__(*args, **kwargs) +        self.fields['checked'].choices = models.CHECK_CHOICES          self.fields['material_type'].choices = models.MaterialType.get_types()          self.fields['material_type'].help_text = models.MaterialType.get_help()          self.fields['conservatory_state'].choices = \ | 
