summaryrefslogtreecommitdiffstats
path: root/askbot/conf/karma_and_badges_visibility.py
blob: 49d7e2112fd6cd1e911a5b3a7f68c70d6d2cb80e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
"""
Settings for making the karma and badge systems visible to 
the users at a different degree
"""
from django.utils.translation import ugettext_lazy as _
from askbot.conf.settings_wrapper import settings
from askbot.deps import livesettings
from askbot.conf.super_groups import REP_AND_BADGES

KARMA_AND_BADGE_VISIBILITY = livesettings.ConfigurationGroup(
                    'KARMA_AND_BADGE_VISIBILITY',
                    _('Karma & Badge visibility'),
                    super_group = REP_AND_BADGES
                )


settings.register(
    livesettings.StringValue(
        KARMA_AND_BADGE_VISIBILITY,
        'KARMA_MODE',
        default = 'public',
        choices = (
            ('public', 'show publicly'),
            ('private', 'show to owners only'),
            ('hidden', 'hide completely'),
        ),#todo: later implement hidden mode
        description = _("Visibility of karma"),
        clear_cache = True,
        help_text = _(
            "User's karma may be shown publicly or only to the owners"
        )
    )
)

settings.register(
    livesettings.StringValue(
        KARMA_AND_BADGE_VISIBILITY,
        'BADGES_MODE',
        default = 'public',
        choices = (
            ('public', 'show publicly'),
            ('hidden', 'hide completely')
        ),#todo: later implement private mode
        description = _("Visibility of badges"),
        clear_cache = True,
        help_text = _(
            'Badges can be either publicly shown or completely hidden'
        )
    )
)