summaryrefslogtreecommitdiff
path: root/archaeological_context_records/forms.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2017-02-06 20:11:07 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2017-02-06 20:11:07 +0100
commit743a838fbae6e2480c66144de92a718c51bd93fc (patch)
tree453651fdefcf43c552243a0c654df07fee1e19c7 /archaeological_context_records/forms.py
parent71080af76f3cef7ef69678fe66a0459157c56f36 (diff)
parented2d630c8eea29fd68383105a4aa793a55b455ea (diff)
downloadIshtar-743a838fbae6e2480c66144de92a718c51bd93fc.tar.bz2
Ishtar-743a838fbae6e2480c66144de92a718c51bd93fc.zip
Merge branch 'v0.9' into wheezy
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)