I'm using Django Registration Redux for user activation. From what I understand, the 'Active' field in the User model tracks whether or not the user has activated their account via the Django Registration Redux activation email, but doesn't do much else. Is this correct?
If so, how can I continue to use the built-in Django auth features to check if the user is logged in AND they have activated their account?
Thanks!