summaryrefslogtreecommitdiff
path: root/ishtar/furnitures/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar/furnitures/forms.py')
-rw-r--r--ishtar/furnitures/forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ishtar/furnitures/forms.py b/ishtar/furnitures/forms.py
index 7ae604f9b..d542e92be 100644
--- a/ishtar/furnitures/forms.py
+++ b/ishtar/furnitures/forms.py
@@ -1867,10 +1867,10 @@ class DatingForm(forms.Form):
choices=models.Period.get_types())
start_date = forms.IntegerField(label=_(u"Start date"), required=False)
end_date = forms.IntegerField(label=_(u"End date"), required=False)
- dating_type = forms.ChoiceField(label=_("Dating type"), required=False,
- choices=models.DatingType.get_types())
quality = forms.ChoiceField(label=_("Quality"), required=False,
choices=models.DatingQuality.get_types())
+ dating_type = forms.ChoiceField(label=_("Dating type"), required=False,
+ choices=models.DatingType.get_types())
DatingFormSet = formset_factory(DatingForm, can_delete=True,
formset=FormSet)