From ceab95b444462093068ba14213841786a5d0ec84 Mon Sep 17 00:00:00 2001 From: 0livd <0livd@users.noreply.github.com> Date: Sun, 19 Mar 2017 18:53:09 +0100 Subject: Remove unused archive feature The archive table is not removed from the database model because it would involve a tricky migration fixes #170 --- budget/forms.py | 6 ------ 1 file changed, 6 deletions(-) (limited to 'budget/forms.py') 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()], -- cgit v1.1