class PasswordContextMixin
from django.contrib.auth.views import PasswordContextMixin
Attributes
| Defined in | |
|---|---|
__firstlineno__ = 199
|
PasswordContextMixin |
__static_attributes__ = ()
|
PasswordContextMixin |
extra_context = None
|
PasswordContextMixin |
Methods
def
get_context_data(self, **kwargs):
PasswordContextMixin
¶
def
get_context_data(self, **kwargs):
PasswordContextMixin
¶
202 203 204 205 206 207 | def get_context_data(self, **kwargs): context = super().get_context_data(**kwargs) context.update( {"title": self.title, "subtitle": None, **(self.extra_context or {})} ) return context |