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, 1 insertions, 1 deletions
diff --git a/src/web/forms.py b/src/web/forms.py
index 5957ceef..4d44f379 100644
--- a/src/web/forms.py
+++ b/src/web/forms.py
@@ -206,8 +206,8 @@ class CategoryForm(Form):
class BookmarkForm(Form):
href = TextField(lazy_gettext("URL"))
+ title = TextField(lazy_gettext("Title"))
description = TextField(lazy_gettext("Description"))
- extended = TextField(lazy_gettext("Description long"))
tags = TextField(lazy_gettext("Tags"))
to_read = BooleanField(lazy_gettext("To read"), default=False)
shared = BooleanField(lazy_gettext("Shared"), default=False)
bgstack15