Opened 15 years ago

Last modified 13 years ago

#9992 closed

get_profile / get_model issue, capitalisation of AUTH_PROFILE_MODULE — at Version 2

Reported by: anonymous Owned by: nobody
Component: Documentation Version: 1.0
Severity: 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 (last modified by Jacob)

The docs lead one to expect that given an app name Profile, a AUTH_PROFILE_MODULE setting of profile.modelname would work, but Profile.modelname is actually correct.

http://docs.djangoproject.com/en/dev/topics/auth/#auth-profiles claims that AUTH_PROFILE_MODULE is "The (normalized to lower-case) name of the application in which the user profile model is defined (in other words, an all-lowercase version of the name which was passed to manage.py startapp to create the application)."

This is wrong; the app_label part is the a python module, and hence case-sensitive.

Change History (3)

by h.fangohr@…, 15 years ago

Attachment: debug.tar.gz added

Tar file of complete Django site to demonstrate the problem.

comment:1 by Ramiro Morales, 15 years ago

Description: modified (diff)

(edited description)

comment:2 by Jacob, 15 years ago

Description: modified (diff)
milestone: 1.1
Triage Stage: UnreviewedAccepted

[trimmed excessive explanation; this is actually a very simple doc fix]

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