Gilang Chandrasa Thoughts, stories, and ideas

Django - AttributeError type object 'Http404' has no attribute 'get'

This issue mostly because you return Http404 instead of raise Http404.

You just need to replace return Http404 with raise Http404