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
2022-11-16 17:23:46 -07:00

11 lines
242 B
Python

from core.models import Config
def config_context(request):
return {
"config": Config.load_system(),
"config_identity": (
Config.load_identity(request.identity) if request.identity else None
),
}