summaryrefslogtreecommitdiff
path: root/archaeological_context_records/forms.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2017-02-06 20:07:45 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2017-02-06 20:07:45 +0100
commit51dc338f873efa8f5c79f5ec4a5723ee9e5be26c (patch)
tree058d8317204500766ffc94701a2a40d52851cdc3 /archaeological_context_records/forms.py
parent6979f76c94daae084eb0c5525e1a65734c97555f (diff)
parent53c4caf13113c8f84bb037e325c4a3c982c49682 (diff)
downloadIshtar-51dc338f873efa8f5c79f5ec4a5723ee9e5be26c.tar.bz2
Ishtar-51dc338f873efa8f5c79f5ec4a5723ee9e5be26c.zip
Merge branch 'master' into v0.9
Diffstat (limited to 'archaeological_context_records/forms.py')
-rw-r--r--archaeological_context_records/forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_context_records/forms.py b/archaeological_context_records/forms.py
index 0452243e2..953d33417 100644
--- a/archaeological_context_records/forms.py
+++ b/archaeological_context_records/forms.py
@@ -144,7 +144,7 @@ class RecordFormGeneral(ManageOldType, forms.Form):
width = forms.FloatField(label=_(u"Width (m)"), required=False)
thickness = forms.FloatField(label=_(u"Thickness (m)"), required=False)
depth = forms.FloatField(label=_(u"Depth (m)"), required=False)
- unit = forms.ChoiceField(label=_("Unit"), required=False, choices=[])
+ unit = forms.ChoiceField(label=_("Context record type"), required=False, choices=[])
has_furniture = forms.NullBooleanField(label=_(u"Has furniture?"),
required=False)
location = forms.CharField(
@@ -352,7 +352,7 @@ class RecordSourceSelect(SourceSelect):
context_record__datings__period = forms.ChoiceField(
label=_(u"Period of the context record"), choices=[])
context_record__unit = forms.ChoiceField(
- label=_(u"Unit type of the context record"), choices=[])
+ label=_(u"Context record type"), choices=[])
def __init__(self, *args, **kwargs):
super(RecordSourceSelect, self).__init__(*args, **kwargs)