summaryrefslogtreecommitdiff
path: root/archaeological_context_records/forms.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2016-10-22 10:26:31 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2016-10-22 10:26:31 +0200
commit2909deebcf922fd0d2f3741ce022a0085efc8ee3 (patch)
tree2f90979829f0048f5cbeafc552d07466eb378f4b /archaeological_context_records/forms.py
parenta14e3d7d1d46c389cef85addd3f925c520924159 (diff)
downloadIshtar-2909deebcf922fd0d2f3741ce022a0085efc8ee3.tar.bz2
Ishtar-2909deebcf922fd0d2f3741ce022a0085efc8ee3.zip
Context record: move "has furniture" to general panel
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 5bfecd8ef..72cb24097 100644
--- a/archaeological_context_records/forms.py
+++ b/archaeological_context_records/forms.py
@@ -145,6 +145,8 @@ class RecordFormGeneral(ManageOldType, forms.Form):
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=[])
+ has_furniture = forms.NullBooleanField(label=_(u"Has furniture?"),
+ required=False)
location = forms.CharField(
label=_(u"Location"), widget=forms.Textarea,
required=False, validators=[validators.MaxLengthValidator(200)])
@@ -289,8 +291,6 @@ class RecordFormInterpretation(ManageOldType, forms.Form):
datings_comment = forms.CharField(
label=_(u"Comments on dating"), required=False,
widget=forms.Textarea)
- has_furniture = forms.NullBooleanField(label=_(u"Has furniture?"),
- required=False)
filling = forms.CharField(label=_(u"Filling"),
widget=forms.Textarea, required=False)
interpretation = forms.CharField(label=_(u"Interpretation"),