forked from GithubBackups/healthchecks
6 lines
136 B
Python
6 lines
136 B
Python
from django.conf import settings
|
|
|
|
|
|
def branding(request):
|
|
return {"site_name": settings.SITE_NAME, "site_root": settings.SITE_ROOT}
|