X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/4220f79214eb697103f50e6710e50e45662827fe..7cdc19bcfed965828015c882bed2cd82a7f442d7:/forum/settings/sidebar.py?ds=inline diff --git a/forum/settings/sidebar.py b/forum/settings/sidebar.py index 031763a..a2b3f23 100644 --- a/forum/settings/sidebar.py +++ b/forum/settings/sidebar.py @@ -1,13 +1,29 @@ from base import Setting, SettingSet from django.forms.widgets import Textarea +from django.utils.translation import ugettext_lazy as _ SIDEBAR_SET = SettingSet('sidebar', 'Sidebar content', "Enter contents to display in the sidebar. You can use markdown and some basic html tags.", 10, True) +SHOW_WELCOME_BOX = Setting('SHOW_WELCOME_BOX', True, SIDEBAR_SET, dict( +label = _("Show the Welcome box"), +help_text = _("Do you want to show the welcome box when a user first visits your site."), +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."), +widget=Textarea)) + + SIDEBAR_UPPER_SHOW = Setting('SIDEBAR_UPPER_SHOW', True, SIDEBAR_SET, dict( label = "Show Upper Block", help_text = "Check if your pages should display the upper sidebar block.", required=False)) +SIDEBAR_UPPER_DONT_WRAP = Setting('SIDEBAR_UPPER_DONT_WRAP', False, SIDEBAR_SET, dict( +label = "Don't Wrap Upper Block", +help_text = "Don't wrap upper block with the standard style.", +required=False)) SIDEBAR_UPPER_TEXT = Setting('SIDEBAR_UPPER_TEXT', u""" @@ -30,6 +46,11 @@ label = "Show Lower Block", help_text = "Check if your pages should display the lower sidebar block.", required=False)) +SIDEBAR_LOWER_DONT_WRAP = Setting('SIDEBAR_LOWER_DONT_WRAP', False, SIDEBAR_SET, dict( +label = "Don't Wrap Lower Block", +help_text = "Don't wrap lower block with the standard style.", +required=False)) + SIDEBAR_LOWER_TEXT = Setting('SIDEBAR_LOWER_TEXT', u""" ## Learn more about OSQA