takahe/core/context.py

18 wiersze
505 B
Python
Czysty Zwykły widok Historia

from django.conf import settings
from core.models import Config
2022-11-05 20:17:27 +00:00
def config_context(request):
return {
2022-11-18 02:16:34 +00:00
"config": Config.system,
"allow_migration": settings.SETUP.ALLOW_USER_MIGRATION,
"top_section": request.path.strip("/").split("/")[0],
"opengraph_defaults": {
"og:site_name": Config.system.site_name,
"og:type": "website",
"og:title": Config.system.site_name,
"og:url": request.build_absolute_uri(),
},
}