X-Git-Url: https://git.openstreetmap.org./osqa.git/blobdiff_plain/f12629b43eb5b0f87e058f104af6720be5b59320..46b868a3f5ffa8f693808cb832306286802124f4:/forum/settings/basic.py?ds=sidebyside diff --git a/forum/settings/basic.py b/forum/settings/basic.py index 844947c..a4efd6f 100644 --- a/forum/settings/basic.py +++ b/forum/settings/basic.py @@ -8,7 +8,7 @@ from django.forms.widgets import Textarea BASIC_SET = SettingSet('basic', _('Basic settings'), _("The basic settings for your application"), 1) -APP_LOGO = Setting('APP_LOGO', '/m/default/media/images/logo.png', BASIC_SET, dict( +APP_LOGO = Setting('APP_LOGO', '/upfiles/logo.png', BASIC_SET, dict( label = _("Application logo"), help_text = _("Your site main logo."), widget=ImageFormWidget)) @@ -35,21 +35,18 @@ label = _("Application description"), help_text = _("The description of your application"), widget=Textarea)) -APP_INTRO = Setting('APP_INTRO', u'

Ask and answer questions, make the world better!

', BASIC_SET, dict( -label = _("Application intro"), -help_text = _("The introductory page that is visible in the sidebar for anonymous users."), -widget=Textarea)) - APP_COPYRIGHT = Setting('APP_COPYRIGHT', u'Copyright OSQA, 2010. Some rights reserved under creative commons license.', BASIC_SET, dict( label = _("Copyright notice"), 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."), +SUPPORT_URL = Setting('SUPPORT_URL', '', BASIC_SET, dict( +label = _("Support URL"), +help_text = _("The URL provided for users to get support. It can be http: or mailto: or whatever your preferred support scheme is."), required=False)) -SHOW_WELCOME_BOX = Setting('SHOW_WELCOME_BOX', True, 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."), +CONTACT_URL = Setting('CONTACT_URL', '', BASIC_SET, dict( +label = _("Contact URL"), +help_text = _("The URL provided for users to contact you. It can be http: or mailto: or whatever your preferred contact scheme is."), required=False)) + +