#15005 closed (invalid)
Documentation of django.views.generic.simple.redirect_to incorrect?
Reported by: | Nicolas Kuttler | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | 1.3-beta |
Severity: | 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
On http://docs.djangoproject.com/en/dev/ref/generic-views/?from=olddocs#django-views-generic-simple-redirect-to the examples like
urlpatterns = patterns('django.views.generic.simple', ('^foo/(?P<id>\d+)/$', 'redirect_to', {'url': '/bar/%(id)s/'}), )
seem to be incorrect. redirect_to isn't supposed to be a string but the class?
Note:
See TracTickets
for help on using tickets.
The example is correct: "redirect_to" is a function inside module "django.views.generic.simple".