(self, **kwargs)
| 208 | extra_context = None |
| 209 | |
| 210 | def get_context_data(self, **kwargs): |
| 211 | context = super().get_context_data(**kwargs) |
| 212 | context.update( |
| 213 | {"title": self.title, "subtitle": None, **(self.extra_context or {})} |
| 214 | ) |
| 215 | return context |
| 216 | |
| 217 | |
| 218 | @method_decorator([login_not_required, csrf_protect], name="dispatch") |
nothing calls this directly
no test coverage detected