1
Fork 0
theorangeone.net-legacy/project/common/views.py
2015-11-23 18:50:14 +00:00

13 lines
352 B
Python

from django.views.generic import TemplateView
class CustomHeaderBG():
"""Allow custom header background"""
class Template(TemplateView):
header_BG = ""
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
context['header_BG'] = self.header_BG
return context