7 lines
184 B
Python
7 lines
184 B
Python
|
class TitleMixin:
|
||
|
title = "Untitled Page"
|
||
|
|
||
|
def get_context_data(self):
|
||
|
context = super().get_context_data()
|
||
|
context["title"] = self.title
|
||
|
return context
|