diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-07-31 17:15:06 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-07-31 17:15:06 +0200 |
commit | afe97dd3964f003c4c55d5abfe8f8ed523e6a1c1 (patch) | |
tree | 375fdd3eb5d799ae5a12f4a001dbc20de3dbc5ae | |
parent | aa18b736ba9323e55813377b34b42dcfe77dd35c (diff) | |
download | Ishtar-afe97dd3964f003c4c55d5abfe8f8ed523e6a1c1.tar.bz2 Ishtar-afe97dd3964f003c4c55d5abfe8f8ed523e6a1c1.zip |
Find forms: add discovery date (refs #3696)
-rw-r--r-- | archaeological_finds/forms.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/archaeological_finds/forms.py b/archaeological_finds/forms.py index 2e7cc75f5..884bbe9a1 100644 --- a/archaeological_finds/forms.py +++ b/archaeological_finds/forms.py @@ -144,6 +144,8 @@ class FindForm(ManageOldType, forms.Form): previous_id = forms.CharField(label=_("Previous ID"), required=False) description = forms.CharField(label=_("Description"), widget=forms.Textarea, required=False) + get_first_base_find__discovery_date = forms.DateField( + label=_(u"Discovery date"), widget=widgets.JQueryDate, required=False) get_first_base_find__batch = forms.ChoiceField( label=_(u"Batch/object"), choices=[], required=False) |