I'm new to both web in general/django world. I've been raising Http404 for all my error cases (from my view). I think raising other than 404, such as 401, 402.. for different errors would be much nicer for me to detect what's gone wrong.
I found return HttpResponse(status=401) would do the job. But is this considered an acceptable practice? Should I not interfere with status code because each of them is supposed to mean something?
