diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-09-15 16:42:35 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-09-15 16:42:35 +0200 |
commit | 1a5657cbc9c281266973a732fdc05ecca425211f (patch) | |
tree | 8dbd4dceded20366f3e5d0bfdcdf0f236a20b004 /archaeological_operations/forms.py | |
parent | 684e721a31a0a7c3497c1440d91a20602843f586 (diff) | |
download | Ishtar-1a5657cbc9c281266973a732fdc05ecca425211f.tar.bz2 Ishtar-1a5657cbc9c281266973a732fdc05ecca425211f.zip |
Operation: add comment about scientific documentation (refs #3229)
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, |