]> git.openstreetmap.org Git - osqa.git/blobdiff - forum/settings/__init__.py
General cleanup. Moved many hardcoded stuff still left in the code to an admin option...
[osqa.git] / forum / settings / __init__.py
index 2446496edf195c94707f70c01b9896bd9dc0bc43..9ab0c6bf44554aeaedc3ec53ec8bc0f058148e48 100644 (file)
@@ -4,9 +4,13 @@ from forms import ImageFormWidget
 
 from django.forms.widgets import Textarea
 from django.utils.translation import ugettext_lazy as _
+from django.conf import settings as djsettings
 
-INTERNAL_VERSION = Setting('INTERNAL_VERSION', "56")
+OSQA_VERSION = Setting('OSQA_VERSION', "Development Version")
 SETTINGS_PACK = Setting('SETTINGS_PACK', "default")
+APP_URL = djsettings.APP_URL
+FORUM_SCRIPT_ALIAS = djsettings.FORUM_SCRIPT_ALIAS
+
 
 from basic import *
 from email import *
@@ -15,7 +19,11 @@ from minrep import *
 from repgain import *
 from voting import *
 from upload import *
-from pages import *
+from about import *
+from faq import *
+from form import *
+from moderation import *
+from users import *
 
 BADGES_SET = SettingSet('badges', _('Badges config'), _("Configure badges on your OSQA site."), 500)