7 lines
189 B
Python
7 lines
189 B
Python
|
class TitleMixin:
|
||
|
title = ""
|
||
|
|
||
|
def get_context_data(self, **kwargs):
|
||
|
context = super().get_context_data(**kwargs)
|
||
|
context["title"] = self.title
|
||
|
return context
|