Just received the Sentry error TypeError context must be a dict rather than Context. on one of my forms. I know it has something to do with Django 1.11, but I
TypeError context must be a dict rather than Context.
For django 1.11 and after, context must be dict.
You can use:
context_dict = get_context_dict(context) return t.render(context_dict)
or
context_dict = context.flatten() return t.render(context_dict)