X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/af2fa7143f68cc56b2c5053f2f079399bbba6885..b7fff853ac74f81021b7da25ee0754e547fb8859:/forum/settings/sidebar.py diff --git a/forum/settings/sidebar.py b/forum/settings/sidebar.py index 2242538..4e5ad39 100644 --- a/forum/settings/sidebar.py +++ b/forum/settings/sidebar.py @@ -11,6 +11,11 @@ label = _("Show the Welcome box"), help_text = _("Do you want to show the welcome box when a user first visits your site."), required=False)) +SHOW_INTERESTING_TAGS_BOX = Setting('SHOW_INTERESTING_TAGS_BOX', True, SIDEBAR_SET, dict( +label = _("Show interesting tags in the sidebar"), +help_text = _("Check this if you want to see the interesting tags container in the sidebar."), +required=False)) + APP_INTRO = Setting('APP_INTRO', u'
Ask and answer questions, make the world better!
', SIDEBAR_SET, dict( label = _("Application intro"), help_text = _("The introductory page that is visible in the sidebar for anonymous users."), @@ -26,7 +31,8 @@ u""" , SIDEBAR_SET, dict( label = "Question title tips", help_text = "Tips visible on the ask or edit questions page about the question title.", -required=False)) +required=False, +widget=Textarea(attrs={'rows': '10'}))) QUESTION_TAG_TIPS = Setting('QUESTION_TAG_TIPS', u""" @@ -37,7 +43,8 @@ u""" , SIDEBAR_SET, dict( label = "Tagging tips", help_text = "Tips visible on the ask or edit questions page about good tagging.", -required=False)) +required=False, +widget=Textarea(attrs={'rows': '10'}))) SIDEBAR_UPPER_SHOW = Setting('SIDEBAR_UPPER_SHOW', True, SIDEBAR_SET, dict(