]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/settings/basic.py
Added a new optional setting for "support" URL that gets shown in the footer
[osqa.git] / forum / settings / basic.py
index a3382b1898b271f04087a810c818001e13abe6ce..ec4d1418d806c57a687ce2de6e2ca256f416c523 100644 (file)
@@ -39,8 +39,14 @@ APP_COPYRIGHT = Setting('APP_COPYRIGHT', u'Copyright OSQA, 2010. Some rights res
 label = _("Copyright notice"),\r
 help_text = _("The copyright notice visible at the footer of your page.")))\r
 \r
-FEEDBACK_SITE_URL = Setting('FEEDBACK_SITE_URL', '', BASIC_SET, dict(\r
-label = _("Feedback site url"),\r
-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."),\r
+SUPPORT_URL = Setting('SUPPORT_URL', '', BASIC_SET, dict(\r
+label = _("Support URL"),\r
+help_text = _("The URL provided for users to get support. It can be http: or mailto: or whatever your preferred support scheme is."),\r
 required=False))\r
 \r
+CONTACT_URL = Setting('CONTACT_URL', '', BASIC_SET, dict(\r
+label = _("Contact URL"),\r
+help_text = _("The URL provided for users to contact you. It can be http: or mailto: or whatever your preferred contact scheme is."),\r
+required=False))\r
+\r
+\r