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.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/web/forms.py b/src/web/forms.py
index d63394f7..a604897e 100644
--- a/src/web/forms.py
+++ b/src/web/forms.py
@@ -160,6 +160,7 @@ class ProfileForm(Form):
password_conf = PasswordField(lazy_gettext("Password Confirmation"))
automatic_crawling = BooleanField(lazy_gettext("Automatic crawling"),
default=True)
+ bio = TextAreaField(lazy_gettext("Bio"))
webpage = URLField(lazy_gettext("Webpage"))
twitter = URLField(lazy_gettext("Twitter"))
is_public_profile = BooleanField(lazy_gettext("Public profile"),
bgstack15