I\'m trying to do cache_page with class based views (TemplateView) and i\'m not able to. I followed instructions here:
Django--URL Caching Failing for Class Based Vi
You can add it as a class decorator and even add multiple using a list:
@method_decorator([vary_on_cookie, cache_page(900)], name='dispatch') class SomeClass(View): ...