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

Backport of 964979e8ec from master.
This commit is contained in:
Tim Graham 2012-07-31 16:13:52 -04:00
parent fa6577f5b2
commit 751a34e4b3
1 changed files with 6 additions and 5 deletions

View File

@ -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
~~~~~~~~~~~~~~~~~~~~~~~~~~~~