From: qw3rty Date: Wed, 12 May 2010 22:39:46 +0000 (+0000) Subject: osqa - 235 X-Git-Tag: live~884 X-Git-Url: https://git.openstreetmap.org/osqa.git/commitdiff_plain/922a466d3a98ca5f5010e2cd12ec920f24e64652 osqa - 235 the addition of the settings for showing the welcome box. git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@245 0cfe37f9-358a-4d5e-be75-b63607b5c754 --- diff --git a/forum/settings/basic.py b/forum/settings/basic.py index 4263ae9..25afd95 100644 --- a/forum/settings/basic.py +++ b/forum/settings/basic.py @@ -47,4 +47,9 @@ help_text = _("The copyright notice visible at the footer of your page."))) FEEDBACK_SITE_URL = Setting('FEEDBACK_SITE_URL', '', BASIC_SET, dict( label = _("Feedback site url"), help_text = _("If you have a specific place to get feedback from your users, use this field and the fedback link on the footer will point there."), -required=False)) \ No newline at end of file +required=False)) + +SHOW_WELCOME_BOX = Setting('SHOW_WELCOME_BOX', False, BASIC_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))