This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/core/context.py

12 lines
291 B
Python
Raw Normal View History

from core.models import Config
2022-11-05 14:17:27 -06:00
def config_context(request):
return {
2022-11-17 19:16:34 -07:00
"config": Config.system,
"config_identity": (
2022-11-25 21:33:46 -05:00
request.identity.config_identity if request.identity else None
),
"top_section": request.path.strip("/").split("/")[0],
}