summaryrefslogtreecommitdiff
path: root/archaeological_finds/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'archaeological_finds/forms.py')
-rw-r--r--archaeological_finds/forms.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py
index fce2fe3d6..6bd89aa48 100644
--- a/archaeological_finds/forms.py
+++ b/archaeological_finds/forms.py
@@ -1087,7 +1087,6 @@ class FindSelect(HistorySelect):
choices=[], label=_(u"Treatment emergency")
)
-
estimated_value__higher = FloatField(
label=_(u"Estimated value - higher than"))
estimated_value__lower = FloatField(
@@ -1127,6 +1126,12 @@ class FindSelect(HistorySelect):
FieldType('alteration_causes', models.AlterationCauseType),
FieldType('treatment_emergency', models.TreatmentEmergencyType),
]
+ SITE_KEYS = {
+ "archaeological_sites": "attached-to-operation",
+ "archaeological_sites_name": "name-attached-to-operation",
+ "archaeological_sites_context_record": "attached-to-cr",
+ "archaeological_sites_context_record_name": "name-attached-to-cr",
+ }
def __init__(self, *args, **kwargs):
super(FindSelect, self).__init__(*args, **kwargs)