|
Hi there, I find the age of a person of no particular use and well agest too; thus would like to change it to time a member of the site. Not being jdango expect I've kind of bumbled my way through this but am concerned that I might do serious damage to my pilot site. Could some point out the sections where I would make these changes. Regards Thomas K |
|
The date when user has joined the site is stored in the date_joined field of the django.contrib.auth application User model. We rely on that application to provide local authentication mechanism. To get the user joined date-time import the User model:
And use its date_joined field. |