takahe/core/context.py

12 wiersze
291 B
Python
Czysty Zwykły widok Historia

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,
"config_identity": (
2022-11-26 02:33:46 +00:00
request.identity.config_identity if request.identity else None
),
"top_section": request.path.strip("/").split("/")[0],
}