diff options
Diffstat (limited to 'archaeological_operations/forms.py')
| -rw-r--r-- | archaeological_operations/forms.py | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index 15db8be31..fc1003576 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -511,6 +511,8 @@ class OperationSelect(TableSelect):          widget=forms.CheckboxSelectMultiple)      comment = forms.CharField(label=_(u"Comment"), max_length=500)      abstract = forms.CharField(label=_(u"Abstract (full text search)")) +    scientific_documentation_comment = forms.CharField( +        label=_(u"Comment about scientific documentation"))      record_quality = forms.ChoiceField(label=_(u"Record quality"))      report_processing = forms.ChoiceField(label=_(u"Report processing"),                                            choices=[]) @@ -829,6 +831,9 @@ class OperationFormGeneral(ManageOldType, forms.Form):      comment = forms.CharField(label=_(u"Comment"), widget=forms.Textarea,                                required=False) +    scientific_documentation_comment = forms.CharField( +        label=_(u"Comment about scientific documentation"), +        widget=forms.Textarea, required=False)      record_quality = forms.ChoiceField(label=_(u"Record quality"),                                         required=False)      virtual_operation = forms.BooleanField(required=False, | 
