summaryrefslogtreecommitdiffstats
path: root/askbot/conf/leading_sidebar.py
blob: 3fdef401ea59bde7a0efdcddc2ae2af3f4ac2e8d (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
"""
Sidebar settings
"""
from askbot.conf.settings_wrapper import settings
from askbot.deps.livesettings import ConfigurationGroup
from askbot.deps.livesettings import values
from django.utils.translation import ugettext_lazy as _
from askbot.conf.super_groups import CONTENT_AND_UI

LEADING_SIDEBAR = ConfigurationGroup(
                    'LEADING_SIDEBAR',
                    _('Common left sidebar'),
                    super_group = CONTENT_AND_UI
                )

settings.register(
    values.BooleanValue(
        LEADING_SIDEBAR,
        'ENABLE_LEADING_SIDEBAR',
        description = _('Enable left sidebar'),
        default = False,
    )
)

settings.register(
    values.LongStringValue(
        LEADING_SIDEBAR,
        'LEADING_SIDEBAR',
        description = _('HTML for the left sidebar'),
        default = '',
        help_text = _(
            'Use this area to enter content at the LEFT sidebar'
            'in HTML format.  When using this option, please '
            'use the HTML validation service to make sure that '
            'your input is valid and works well in all browsers.'
        )
    )
)