summaryrefslogtreecommitdiff
path: root/lib/grappelli
diff options
context:
space:
mode:
Diffstat (limited to 'lib/grappelli')
-rw-r--r--lib/grappelli/settings.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/grappelli/settings.py b/lib/grappelli/settings.py
new file mode 100644
index 0000000..697d213
--- /dev/null
+++ b/lib/grappelli/settings.py
@@ -0,0 +1,10 @@
+# coding: utf-8
+
+from django.conf import settings
+
+# Admin Site Title
+ADMIN_HEADLINE = getattr(settings, "GRAPPELLI_ADMIN_HEADLINE", 'Grappelli')
+ADMIN_TITLE = getattr(settings, "GRAPPELLI_ADMIN_TITLE", 'Grappelli')
+
+# Link to your Main Admin Site (no slashes at start and end)
+ADMIN_URL = getattr(settings, "GRAPPELLI_ADMIN_URL", '/admin/') \ No newline at end of file