[Answered ]-Many views which inherit from templateview

2👍

I think the error lies in the copy/paste 🙂

Instead:

return super(AboutView, self).dispatch(*args, **kwargs)

Try this:

return super(StaticTemplateView, self).dispatch(*args, **kwargs)
👤matino

Leave a comment