aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'ihatemoney/forms.py')
-rw-r--r--ihatemoney/forms.py13
1 files changed, 0 insertions, 13 deletions
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")])