Reputation: 91
How to get date of registration? What is the name of this field? I use django-registration. I don't see this in the documentation
User.objects.filter(date_of_registration_field__lt = my_date)
Upvotes: 7
Views: 9458
Reputation: 65841
A datetime designating when the account was created. Is set to the current date/time by default when the account is created.
Upvotes: 21