mirror of
https://github.com/EDeev/deev.space.git
synced 2026-06-15 11:01:10 +03:00
8 lines
No EOL
221 B
Python
8 lines
No EOL
221 B
Python
from .models import SiteSettings
|
||
|
||
|
||
def site_settings(request):
|
||
"""Глобальный контекст с настройками сайта."""
|
||
return {
|
||
'global_settings': SiteSettings.load()
|
||
} |