I couldn't get it to work with any CRSF settings when I tried. Eventually I disabled the check in Django. This is not secure of course..
Add this to your pySentryConf:
MIDDLEWARE = [
middleware for middleware in MIDDLEWARE if middleware != "django.middleware.csrf.CsrfViewMiddleware"
]