Contents for django tag
-
Django view classes and decorators [Article]
There have been several proposals (for example, here and here) for using view classes instead of view functions for rendering views in Django. One of the problems I encountered when first attempting to use this approach was that (some of) Django's view decorators don't work on methods because the
self…