Opened 19 years ago

Closed 19 years ago

Last modified 18 years ago

#774 closed defect (fixed)

Typo in 'User authentication in Django' documentation article?

Reported by: footless@… Owned by: Jacob
Component: *.djangoproject.com Version:
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

Second example from the bottom at http://www.djangoproject.com/documentation/authentication/

'return render_to_response("playlists/create", context_instance=DjangoContext)'

this only works for me if i the instantiate DjangoContext first, eg:

'return render_to_response("playlists/create", context_instance=DjangoContext(request))'

This is my first ticket, hope it helps and that I'm not wasting your time,

Cheers,
foot

Change History (2)

comment:1 by jbennett@…, 19 years ago

Another one spotted: under the heading "Authentication data in templates" is a link which should point to http://www.djangoproject.com/documentation/templates_python/ but instead goes to http://www.djangoproject.com/documentation/models/templates_python/, which is a 404.

comment:2 by Adrian Holovaty, 19 years ago

Resolution: fixed
Status: newclosed

(In [1199]) Fixed #774 -- Fixed typos in docs/authentication.txt. Thanks, footless and jbennett

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