Opened 9 years ago
Last modified 9 years ago
#25472 closed Cleanup/optimization
docs for — at Initial Version
Reported by: | Thomas Güttler | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | 1.8 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
The docs of login_required() should show the usage in class-based-views.
This pattern seems common:
`
urlpatterns = [
url(r'about/', login_required(TemplateView.as_view(template_name="secret.html"))),
`
from: https://docs.djangoproject.com/en/1.8/topics/class-based-views/intro/#decorating-in-urlconf
Please update the docs: https://docs.djangoproject.com/en/1.8/topics/auth/default/#django.contrib.auth.decorators.login_required
Since class-based views are the default today, I think it would be appropriate to list the class-based-view way first, and then list the decorating of view-methods.