diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-08-04 23:32:09 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-08-04 23:32:09 +0200 |
commit | 6aa00adfac33c9b21208332bd1e29df9d5882f3e (patch) | |
tree | 9ded4e826a7dcce3577fb28c9e652c1971b9870f /ishtar/ishtar_base/forms.py | |
parent | 861999ff77ff11aedc73a83aa084f03d723e720b (diff) | |
download | Ishtar-6aa00adfac33c9b21208332bd1e29df9d5882f3e.tar.bz2 Ishtar-6aa00adfac33c9b21208332bd1e29df9d5882f3e.zip |
Closing an archaeological file (closes #558)
Diffstat (limited to 'ishtar/ishtar_base/forms.py')
-rw-r--r-- | ishtar/ishtar_base/forms.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ishtar/ishtar_base/forms.py b/ishtar/ishtar_base/forms.py index 1021caee5..e4f52b1cd 100644 --- a/ishtar/ishtar_base/forms.py +++ b/ishtar/ishtar_base/forms.py @@ -691,6 +691,11 @@ class DeletionWizard(Wizard): return render_to_response('wizard_delete_done.html', {}, context_instance=RequestContext(request)) +class ClosingDateFormSelection(forms.Form): + form_label = _("Closing date") + end_date = forms.DateField(label=_(u"Closing date"), + widget=widgets.JQueryDate) + class ClosingWizard(Wizard): # "close" an item # to be define in the overloaded class |