]> git.openstreetmap.org Git - osqa.git/blob - forum/settings/__init__.py
initial import
[osqa.git] / forum / settings / __init__.py
1 import os.path
2 from base import Setting, SettingSet
3 from forms import ImageFormWidget
4
5 from django.forms.widgets import Textarea
6 from django.utils.translation import ugettext_lazy as _
7
8 INTERNAL_VERSION = Setting('INTERNAL_VERSION', "201003270")
9 SETTINGS_PACK = Setting('SETTINGS_PACK', "default")
10
11 from basic import *
12 from email import *
13 from extkeys import *
14 from minrep import *
15 from repgain import *
16 from voting import *
17 from upload import *
18 from pages import *
19
20 BADGES_SET = SettingSet('badges', _('Badges config'), _("Configure badges on your OSQA site."), 500)
21
22 #__all__ = locals().keys()
23