Opened 11 years ago

Closed 11 years ago

Last modified 11 years ago

#19335 closed Bug (fixed)

Minor mistake in documentation

Reported by: anonymous Owned by: nobody
Component: Documentation Version: 1.4
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Here : https://docs.djangoproject.com/en/dev/topics/class-based-views/
In section with heading "Simple usage in your URLconf", the last sentence says :
"Any arguments given will override the template_name on the A similar overriding pattern can be used for the url attribute on RedirectView."
It should probably be:
"
Any arguments given will override the template_name on the view. A similar overriding pattern can be used for the url attribute on RedirectView.
"

Change History (3)

comment:1 by Claude Paroz, 11 years ago

Triage Stage: UnreviewedAccepted

comment:2 by Tim Graham <timograham@…>, 11 years ago

Resolution: fixed
Status: newclosed

In e2b18081968d1dd931c95669451852fdd34f28ef:

Fixed #19335 - Typo and cleanups in docs/topics/class-based-views/index.txt

comment:3 by Tim Graham <timograham@…>, 11 years ago

In 6d1307102104d5982e5dc8c3485ffd7bfdb658d3:

[1.5.X] Fixed #19335 - Typo and cleanups in docs/topics/class-based-views/index.txt

Backport of e2b1808196 from master

Note: See TracTickets for help on using tickets.
Back to Top