The way to do what you're trying to do is to take advantage of the
following:
http://docs.djangoproject.com/en/dev/topics/auth/#storing-additional-information-about-users
In brief, you'll create another model, which will then be specified in
your settings.py by AUTH_PROFILE_MODULE. From then
The way to do what you're trying to do is to take advantage of the
following:
http://docs.djangoproject.com/en/dev/topics/auth/#storing-additional-information-about-users
In brief, you'll create another model, which will then be specified in
your settings.py by AUTH_PROFILE_MODULE. From then
Hi, I want add a new attribute in User model and create custom backends.
Steep by steep, I did the following:
1) I created an application named "profile" into my project
2) I created, in models.py of "profile" a class named "UserProfile",
which inherits
from User class of Django. I added "press_age
Hi, I want add a new attribute in User model and create custom backends.
Steep by steep, I did the following:
1) I created an application named "profile" into my project
2) I created, in models.py of "profile" a class named "UserProfile",
which inherits
from User class of Django. I added "press_age
4 matches
Mail list logo