Класс PasswordContextMixin (Django 3.2)
from django.contrib.auth.views import PasswordContextMixin
Диаграмма | Документация | Исходный код
Атрибуты
Определено в | |
---|---|
extra_context = None
|
PasswordContextMixin |
Методы
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
context.update({
'title': self.title,
**(self.extra_context or {})
})
return context