(self, **kwargs)
| 346 | title = _("Password reset complete") |
| 347 | |
| 348 | def get_context_data(self, **kwargs): |
| 349 | context = super().get_context_data(**kwargs) |
| 350 | context["login_url"] = resolve_url(settings.LOGIN_URL) |
| 351 | return context |
| 352 | |
| 353 | |
| 354 | @method_decorator( |
nothing calls this directly
no test coverage detected