On my Sentry report, I get some issue AttributeError'Context' object has no attribute 'request'.
After I observed, this error appeared when an error 500 occurred in my application. If there is an error 500 in the application then the context contains None.
TODO
Maybe you can check if the cointext has a request attribute
Sorry, in case I use custom page if any error 500. In my template {% load sweetify %}, then I remove it to resolve problem. Because in template error don't need sweetify.
Summary
On my Sentry report, I get some issue AttributeError
'Context' object has no attribute 'request'
. After I observed, this error appeared when an error 500 occurred in my application. If there is an error 500 in the application then the context containsNone
.TODO