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