mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-10 13:00:16 +02:00
* Split base template menus out * Add toggle for night mode setting * Add vertical flexbox row Makes each col-* expand to fill the space created by the largest column. * Use flexbox on main character and group panels * Fix data table sort control clipping * Build new css
10 lines
235 B
Python
10 lines
235 B
Python
from django.conf import settings
|
|
from .views import NightModeRedirectView
|
|
|
|
|
|
def auth_settings(request):
|
|
return {
|
|
'SITE_NAME': settings.SITE_NAME,
|
|
'NIGHT_MODE': NightModeRedirectView.night_mode_state(request),
|
|
}
|