(self, **kwargs)
| 55 | return super().dispatch(request, *args, **kwargs) |
| 56 | |
| 57 | def get_context_data(self, **kwargs): |
| 58 | return super().get_context_data( |
| 59 | **{ |
| 60 | **kwargs, |
| 61 | **admin.site.each_context(self.request), |
| 62 | } |
| 63 | ) |
| 64 | |
| 65 | |
| 66 | class BookmarkletsView(BaseAdminDocsView): |
nothing calls this directly
no test coverage detected