aboutsummaryrefslogtreecommitdiff
path: root/budget/forms.py
diff options
context:
space:
mode:
author0livd <0livd@users.noreply.github.com>2017-03-19 18:53:09 +0100
committer0livd <0livd@users.noreply.github.com>2017-03-19 20:16:06 +0100
commitceab95b444462093068ba14213841786a5d0ec84 (patch)
treee74f6d48905ed3766b2dc843296ddd3511dcfa9f /budget/forms.py
parent79d33e1c65142dcf96c5e41ea3ff572122727bb7 (diff)
downloadihatemoney-mirror-ceab95b444462093068ba14213841786a5d0ec84.zip
ihatemoney-mirror-ceab95b444462093068ba14213841786a5d0ec84.tar.gz
ihatemoney-mirror-ceab95b444462093068ba14213841786a5d0ec84.tar.bz2
Remove unused archive feature
The archive table is not removed from the database model because it would involve a tricky migration fixes #170
Diffstat (limited to 'budget/forms.py')
-rw-r--r--budget/forms.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/budget/forms.py b/budget/forms.py
index 7cdb36d..6967983 100644
--- a/budget/forms.py
+++ b/budget/forms.py
@@ -172,12 +172,6 @@ class InviteForm(FlaskForm):
email=email))
-class CreateArchiveForm(FlaskForm):
- name = TextField(_("Name for this archive (optional)"), validators=[])
- start_date = DateField(_("Start date"), validators=[Required()])
- end_date = DateField(_("End date"), validators=[Required()], default=datetime.now)
-
-
class ExportForm(FlaskForm):
export_type = SelectField(_("What do you want to download ?"),
validators=[Required()],