summaryrefslogtreecommitdiffstats
path: root/core/context.py
diff options
context:
space:
mode:
Diffstat (limited to 'core/context.py')
-rw-r--r--core/context.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/context.py b/core/context.py
index 026ac11..17617b9 100644
--- a/core/context.py
+++ b/core/context.py
@@ -1,7 +1,7 @@
-from django.conf import settings
+from core.config import Config
def config_context(request):
return {
- "config": {"site_name": settings.SITE_NAME},
+ "config": Config.load(),
}