amarkon
amarkon

Reputation: 91

How to get date of registration?

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

Answers (1)

Lev Levitsky
Lev Levitsky

Reputation: 65841

date_joined

A datetime designating when the account was created. Is set to the current date/time by default when the account is created.

Upvotes: 21

Related Questions