mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 15:21:01 +00:00
11 lines
297 B
Python
11 lines
297 B
Python
from core.models import Config
|
|
|
|
|
|
def config_context(request):
|
|
return {
|
|
"config": Config.system,
|
|
"config_identity": (
|
|
Config.load_identity(request.identity) if request.identity else None
|
|
),
|
|
"top_section": request.path.strip("/").split("/")[0],
|
|
}
|