aboutsummaryrefslogtreecommitdiff
path: root/weblog/apps.py
diff options
context:
space:
mode:
Diffstat (limited to 'weblog/apps.py')
-rw-r--r--weblog/apps.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/weblog/apps.py b/weblog/apps.py
new file mode 100644
index 0000000..3389f92
--- /dev/null
+++ b/weblog/apps.py
@@ -0,0 +1,18 @@
+from django.apps import AppConfig
+
+SETTINGS = {
+ 'enable_comments': False,
+ 'allow_anon_comments': True,
+ 'multilingual': True,
+ 'blog_title': 'Django-Weblog',
+ 'base_template': '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'