Files
band-management/resources/vuexy-admin-v10.11.1/django-version/full-version/templates/layout/bootstrap/layout_blank.py

23 lines
563 B
Python

from web_project.template_helpers.theme import TemplateHelper
"""
This is an entry and Bootstrap class for the theme level.
The init() function will be called in web_project/__init__.py
"""
class TemplateBootstrapLayoutBlank:
def init(context):
context.update(
{
"layout": "blank",
"content_layout": "wide",
"display_customizer": False,
}
)
# map_context according to updated context values
TemplateHelper.map_context(context)
return context