I\'d like to do the following:
raise HttpResponseForbidden()
But I get the error:
exceptions must be old-style classes or d
Return it from the view as you would any other response.
from django.http import HttpResponseForbidden return HttpResponseForbidden()