(self, **kwargs)
| 159 | return self.request.path |
| 160 | |
| 161 | def get_context_data(self, **kwargs): |
| 162 | context = super().get_context_data(**kwargs) |
| 163 | current_site = get_current_site(self.request) |
| 164 | context.update( |
| 165 | { |
| 166 | "site": current_site, |
| 167 | "site_name": current_site.name, |
| 168 | "title": _("Logged out"), |
| 169 | "subtitle": None, |
| 170 | **(self.extra_context or {}), |
| 171 | } |
| 172 | ) |
| 173 | return context |
| 174 | |
| 175 | |
| 176 | def logout_then_login(request, login_url=None): |
nothing calls this directly
no test coverage detected