Display the i18n JavaScript that the Django admin requires. `extra_context` is unused but present for consistency with the other admin views.
(self, request, extra_context=None)
| 381 | return PasswordChangeDoneView.as_view(**defaults)(request) |
| 382 | |
| 383 | def i18n_javascript(self, request, extra_context=None): |
| 384 | """ |
| 385 | Display the i18n JavaScript that the Django admin requires. |
| 386 | |
| 387 | `extra_context` is unused but present for consistency with the other |
| 388 | admin views. |
| 389 | """ |
| 390 | return JavaScriptCatalog.as_view(packages=["django.contrib.admin"])(request) |
| 391 | |
| 392 | def logout(self, request, extra_context=None): |
| 393 | """ |