aboutsummaryrefslogtreecommitdiff
path: root/src/web/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/forms.py')
-rw-r--r--src/web/forms.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/web/forms.py b/src/web/forms.py
index 033ccbbe..d63394f7 100644
--- a/src/web/forms.py
+++ b/src/web/forms.py
@@ -133,6 +133,8 @@ class UserForm(Form):
[validators.Length(min=6, max=35),
validators.Required(lazy_gettext("Please enter your email."))])
password = PasswordField(lazy_gettext("Password"))
+ automatic_crawling = BooleanField(lazy_gettext("Automatic crawling"),
+ default=True)
submit = SubmitField(lazy_gettext("Save"))
def validate(self):
bgstack15