Commit 751a34e4 authored by Tim Graham's avatar Tim Graham
Browse files

[1.4.x] Fixed #18122 - Clarified section title regarding applying permissions to generic views.

Backport of 964979e8 from master.
parent fa6577f5
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -1467,12 +1467,13 @@ The permission_required decorator

.. currentmodule:: django.contrib.auth

Limiting access to generic views
--------------------------------
Applying permissions to generic views
-------------------------------------

To limit access to a :doc:`class-based generic view </ref/class-based-views>`,
decorate the :meth:`View.dispatch <django.views.generic.base.View.dispatch>`
method on the class. See :ref:`decorating-class-based-views` for details.
To apply a permission to a :doc:`class-based generic view
</ref/class-based-views/index>`, decorate the :meth:`View.dispatch
<django.views.generic.base.View.dispatch>` method on the class. See
:ref:`decorating-class-based-views` for details.

Function-based generic views
~~~~~~~~~~~~~~~~~~~~~~~~~~~~