summaryrefslogtreecommitdiff
path: root/demo/grappelli/settings.py
blob: 4854e666dca1f05f5b35de7678011b69bdfaadb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# coding: utf-8

# DJANGO IMPORTS
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/')