From 9f34faadfeb1b148ada6ce2a97cb989e91c3dbc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Lombra=C3=B1a=20Gonz=C3=A1lez?= Date: Tue, 7 Nov 2017 10:19:52 +0100 Subject: [PATCH] Add zip_download to the update form. --- pybossa/forms/forms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pybossa/forms/forms.py b/pybossa/forms/forms.py index ed6a6326e7..e570612bce 100644 --- a/pybossa/forms/forms.py +++ b/pybossa/forms/forms.py @@ -72,6 +72,7 @@ class ProjectUpdateForm(ProjectForm): validators.Length(max=255)]) long_description = TextAreaField(lazy_gettext('Long Description')) allow_anonymous_contributors = BooleanField(lazy_gettext('Allow Anonymous Contributors')) + zip_download = BooleanField(lazy_gettext('Allow ZIP data download')) category_id = SelectField(lazy_gettext('Category'), coerce=int) protect = BooleanField(lazy_gettext('Protect with a password?')) password = TextField(lazy_gettext('Password'))