1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/project/common/views.py

14 lines
352 B
Python
Raw Normal View History

2015-10-19 13:04:49 +01:00
from django.views.generic import TemplateView
class CustomHeaderBG():
"""Allow custom header background"""
class Template(TemplateView):
header_BG = ""
2015-11-23 18:50:14 +00:00
2015-10-19 13:04:49 +01:00
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
context['header_BG'] = self.header_BG
2015-11-23 18:50:14 +00:00
return context