summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archaeological_context_records/forms.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/archaeological_context_records/forms.py b/archaeological_context_records/forms.py
index e5d34117c..40be1b7de 100644
--- a/archaeological_context_records/forms.py
+++ b/archaeological_context_records/forms.py
@@ -755,6 +755,10 @@ class QAContextRecordFormMulti(QAForm):
"qa_excavation_technics": models.ExcavationTechnicType,
"qa_town": models.Town,
"qa_parcel": models.Parcel,
+ "qa_structures": models.StructureType,
+ "qa_textures": models.TextureType,
+ "qa_colors": models.ColorType,
+ "qa_inclusions": models.InclusionType
}
REPLACE_FIELDS = [
"qa_unit",
@@ -790,6 +794,10 @@ class QAContextRecordFormMulti(QAForm):
qa_excavation_technics = forms.ChoiceField(label=_("Excavation technic"), required=False)
qa_activity = forms.ChoiceField(label=_("Activity"), required=False)
qa_identifications = forms.ChoiceField(label=_("Identification"), required=False)
+ qa_structures = forms.ChoiceField(label=_("Structures"), required=False)
+ qa_textures = forms.ChoiceField(label=_("Textures"), required=False)
+ qa_colors = forms.ChoiceField(label=_("Colors"), required=False)
+ qa_inclusions = forms.ChoiceField(label=_("Inclusions"), required=False)
qa_archaeological_site = forms.IntegerField(
label=_("Archaeological site"),
widget=widgets.JQueryAutoComplete(
@@ -809,6 +817,10 @@ class QAContextRecordFormMulti(QAForm):
FieldType("qa_excavation_technics", models.ExcavationTechnicType),
FieldType("qa_activity", models.ActivityType),
FieldType("qa_identifications", models.IdentificationType),
+ FieldType("qa_structures", models.StructureType),
+ FieldType("qa_textures", models.TextureType),
+ FieldType("qa_colors", models.ColorType),
+ FieldType("qa_inclusions", models.InclusionType),
]
def __init__(self, *args, **kwargs):