From 0edf8634a4257b601d18053cf72fc63f285a6871 Mon Sep 17 00:00:00 2001 From: Brice Maron Date: Tue, 13 Aug 2019 23:34:04 +0200 Subject: Move export form to links --- ihatemoney/forms.py | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'ihatemoney/forms.py') diff --git a/ihatemoney/forms.py b/ihatemoney/forms.py index 67f4ec1..d0bcb55 100644 --- a/ihatemoney/forms.py +++ b/ihatemoney/forms.py @@ -215,16 +215,3 @@ class InviteForm(FlaskForm): except email_validator.EmailNotValidError: raise ValidationError(_("The email %(email)s is not valid", email=email)) - - -class ExportForm(FlaskForm): - export_type = SelectField( - _("What do you want to download ?"), - validators=[Required()], - coerce=str, - choices=[("bills", _("bills")), ("transactions", _("transactions"))]) - export_format = SelectField( - _("Export file format"), - validators=[Required()], - coerce=str, - choices=[("csv", "csv"), ("json", "json")]) -- cgit v1.1