summaryrefslogtreecommitdiffstats
path: root/askbot/conf/super_groups.py
blob: a792e7ebf5ca8c1ca9edc78411d6a4270a806867 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from django.utils.translation import ugettext_lazy as _
from askbot.deps.livesettings import SuperGroup
from askbot.deps.livesettings import config_register_super_group

REP_AND_BADGES = SuperGroup(_('Reputation, Badges, Votes & Flags'))
CONTENT_AND_UI = SuperGroup(_('Static Content, URLS & UI'))
DATA_AND_FORMATTING = SuperGroup(_('Data rules & Formatting'))
EXTERNAL_SERVICES = SuperGroup(_('External Services'))
LOGIN_USERS_COMMUNICATION = SuperGroup(_('Login, Users & Communication'))
config_register_super_group(REP_AND_BADGES)
config_register_super_group (LOGIN_USERS_COMMUNICATION)
config_register_super_group(DATA_AND_FORMATTING)
config_register_super_group(EXTERNAL_SERVICES)
config_register_super_group(CONTENT_AND_UI)