aboutsummaryrefslogtreecommitdiff
path: root/src/web/forms.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-07 10:59:54 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-10-07 10:59:54 +0200
commitc4eadb099283af409b13146554abf9e5a0cb49a6 (patch)
tree46cc6357bf50fc9ba884b346e4cd6fd8fcda7ad7 /src/web/forms.py
parentRedirect to the dashboard. (diff)
downloadnewspipe-c4eadb099283af409b13146554abf9e5a0cb49a6.tar.gz
newspipe-c4eadb099283af409b13146554abf9e5a0cb49a6.tar.bz2
newspipe-c4eadb099283af409b13146554abf9e5a0cb49a6.zip
Some other new update for the public profile page.
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