diff options
Diffstat (limited to 'archaeological_context_records')
-rw-r--r-- | archaeological_context_records/forms.py | 4 | ||||
-rw-r--r-- | archaeological_context_records/models.py | 4 | ||||
-rw-r--r-- | archaeological_context_records/templates/ishtar/sheet_contextrecord.html | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/archaeological_context_records/forms.py b/archaeological_context_records/forms.py index 545bcb3c4..380f62198 100644 --- a/archaeological_context_records/forms.py +++ b/archaeological_context_records/forms.py @@ -170,7 +170,7 @@ class RecordSelect(GeoItemSelect, PeriodSelect): cr_relation_types = forms.ChoiceField( label=_("Search within relations"), choices=[] ) - excavation_technics = forms.ChoiceField(label=_("Excavation technique"), choices=[]) + excavation_technics = forms.ChoiceField(label=_("Excavation techniques"), choices=[]) TYPES = PeriodSelect.TYPES + [ FieldType("unit", models.Unit), @@ -305,7 +305,7 @@ class RecordFormGeneral(CustomForm, ManageOldType): label=_("General comment"), widget=forms.Textarea, required=False ) excavation_technic = forms.MultipleChoiceField( - label=_("Excavation technique"), + label=_("Excavation techniques"), choices=[], required=False, widget=widgets.Select2Multiple, diff --git a/archaeological_context_records/models.py b/archaeological_context_records/models.py index 84e160480..0a3a9c256 100644 --- a/archaeological_context_records/models.py +++ b/archaeological_context_records/models.py @@ -532,7 +532,7 @@ class ContextRecord( ("datings__period__label", _("Period")), ("identification__label", _("Identification")), ("activity__label", _("Activity")), - ("excavation_technics__label", _("Excavation technique")), + ("excavation_technics__label", _("Excavation techniques")), ("documents__source_type__label", _("Associated document type")), ("last_modified__year", _("Modification (year)")), ] @@ -818,7 +818,7 @@ class ContextRecord( excavation_technics = models.ManyToManyField( ExcavationTechnicType, blank=True, - verbose_name=_("Excavation technique"), + verbose_name=_("Excavation techniques"), related_name="context_records", ) related_context_records = models.ManyToManyField( diff --git a/archaeological_context_records/templates/ishtar/sheet_contextrecord.html b/archaeological_context_records/templates/ishtar/sheet_contextrecord.html index a38d2c3bf..57e41f983 100644 --- a/archaeological_context_records/templates/ishtar/sheet_contextrecord.html +++ b/archaeological_context_records/templates/ishtar/sheet_contextrecord.html @@ -138,7 +138,7 @@ <hr class="clearfix"> <h3>{% trans "Description"%}</h3> <div class="row"> - {% field_flex_multiple_obj "Excavation technique" item 'excavation_technics' has_image %} + {% field_flex_multiple_obj "Excavation techniques" item 'excavation_technics' has_image %} {% field_flex_multiple_obj "Periods" item 'datings' has_image %} {% field_flex "Town" item.town.label_with_areas '' '' has_image %} {% field_flex_multiple_obj "Documentation" item 'documentations' has_image %} |