aboutsummaryrefslogtreecommitdiff
path: root/weblog/apps.py
blob: 3197cef1d349d505e5a8cbcc30fda035a280da5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from django.apps import AppConfig

SETTINGS = {
    'enable_comments': False,
    'allow_anon_comments': False,
    'multilingual': True,
    'blog_title': 'Django-Weblog',
    'base_template': 'weblog_base.html',
    'show_author': True,
    'use_authors_username': True,
    'show_sidebar': True,
    'show_categories': False,
    'show_archive': True,
    'posts_per_page': 10,
    'dynamic_load': False,
    'infinite_load': False,
    'enable_rss': True,
}

class WeblogConfig(AppConfig):
    name = 'weblog'