aboutsummaryrefslogtreecommitdiff
path: root/weblog/apps.py
blob: 6f2db71344993d4edc24ae6ff519b298bf7e0b29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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,
}

class WeblogConfig(AppConfig):
    name = 'weblog'