diff options
author | Valérie-Emma Leroux <emma@iggdrasil.net> | 2017-02-06 17:35:47 +0100 |
---|---|---|
committer | Valérie-Emma Leroux <emma@iggdrasil.net> | 2017-02-06 17:35:47 +0100 |
commit | b7ed57da8a83328c248fb5817b951d722d989ef2 (patch) | |
tree | b327f1c41833fbfada1ca7d63739c79933452b68 /archaeological_context_records/forms.py | |
parent | 8f9b00f461c5f9ddaebbe9da4cecfab18834c751 (diff) | |
download | Ishtar-b7ed57da8a83328c248fb5817b951d722d989ef2.tar.bz2 Ishtar-b7ed57da8a83328c248fb5817b951d722d989ef2.zip |
Update labels
Diffstat (limited to 'archaeological_context_records/forms.py')
-rw-r--r-- | archaeological_context_records/forms.py | 4 |
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) |