diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-02-13 17:01:07 +0100 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-02-13 17:01:07 +0100 | 
| commit | 5864c4d875c64ab583097220fd99eb087d1dc50d (patch) | |
| tree | efcc0ec8cf1ff42b117652d4213e1f9289b234a3 /archaeological_finds/forms.py | |
| parent | f755be9bf7d2c3ebe5f09aa95e334a1cf6eaa847 (diff) | |
| download | Ishtar-5864c4d875c64ab583097220fd99eb087d1dc50d.tar.bz2 Ishtar-5864c4d875c64ab583097220fd99eb087d1dc50d.zip  | |
Find: add field comment on the material (refs #4284)
Diffstat (limited to 'archaeological_finds/forms.py')
| -rw-r--r-- | archaeological_finds/forms.py | 16 | 
1 files changed, 11 insertions, 5 deletions
diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py index 221eb4f82..738b634e9 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -146,10 +146,10 @@ class BaseFindForm(CustomForm, ManageOldType):      field_order = [          'label', 'denomination', 'previous_id', 'museum_id', 'seal_number',          'mark', 'description', 'is_complete', 'material_type', -        'material_type_quality', 'object_type', 'object_type_quality', -        'find_number', 'min_number_of_individuals', 'inscription', -        'decoration', 'manufacturing_place', 'communicabilitie', 'comment', -        'dating_comment', +        'material_type_quality', 'material_comment', 'object_type', +        'object_type_quality', 'find_number', 'min_number_of_individuals', +        'inscription', 'decoration', 'manufacturing_place', 'communicabilitie', +        'comment', 'dating_comment',          'length', 'width', 'height', 'thickness', 'diameter', 'circumference',          'volume', 'weight', 'clutter_long_side', 'clutter_short_side',          'clutter_height', 'dimensions_comment', 'checked_type', 'check_date' @@ -176,6 +176,9 @@ class BaseFindForm(CustomForm, ManageOldType):      )      material_type_quality = forms.ChoiceField(          label=_(u"Material type quality"), required=False, choices=[]) +    material_comment = forms.CharField( +        label=_(u"Comment on the material"), required=False, +        widget=forms.Textarea)      object_type = widgets.Select2MultipleField(          label=_(u"Object types"), required=False,      ) @@ -280,7 +283,8 @@ class FindForm(BaseFindForm):          'get_first_base_find__excavation_id', 'museum_id', 'seal_number',          'mark', 'description', 'get_first_base_find__discovery_date',          'get_first_base_find__discovery_date_taq', 'get_first_base_find__batch', -        'is_complete', 'material_type', 'material_type_quality', 'object_type', +        'is_complete', 'material_type', 'material_type_quality', +        'material_comment', 'object_type',          'object_type_quality', 'find_number', 'min_number_of_individuals',          'inscription', 'manufacturing_place', 'communicabilitie', 'comment',          'dating_comment', 'length', 'width', 'height', 'thickness', 'diameter', @@ -964,6 +968,7 @@ class FindSelect(HistorySelect):      )      material_type_quality = forms.ChoiceField(label=_(u"Material type quality"),                                                choices=[]) +    material_comment = forms.CharField(label=_(u"Comment on the material"))      object_types = forms.IntegerField(          label=_(u"Object type"),          widget=widgets.JQueryAutoComplete( @@ -1076,6 +1081,7 @@ class FindSelect(HistorySelect):          choices=[], label=_(u"Treatment emergency")      ) +      estimated_value__higher = FloatField(          label=_(u"Estimated value - higher than"))      estimated_value__lower = FloatField(  | 
