I'm using django 1.1. the docs
http://docs.djangoproject.com/en/1.1/topics/auth/#topics-auth
on the is_active flag it says
This doesn’t control whether or not the user can log in. Nothing in the authentication path checks the is_active flag, so if you want to reject a login based on is_active being False, it is up to you to check that in your own login view. However, permission checking using the methods like has_perm() does check this flag and will always return False for inactive users.
I'm using django-registration (latest 0.8 alpha) and using all the default backends. The entire premise of django-registration is based on the is_active flag. i.e. it only gets set after user has activated. However, I can see that when a user logs in it is using django.contrib.auth.views.login. i can see this from the code in auth_urls.py.
When a user registers, but hasn't activated yet, I want a message to be displayed that says something along the lines of "You have not activated your account"
Currently the default behaviour is the form's error message says, "user name and password do not match"
I'm also using the login decorator in my views
@login_required
My questions are:
EDIT: Thanks James and Henry. I don't think i've been very good at describing my questions. I've redone this.
- the django documentation says that is_active is not used as a determinant when logging a user in. This is quite clearly NOT the case. Try it yourself. I can't figure out where this happens in the code. Does anybody know? As far as i can see, it doesn't happen in django-registration nor in django.contrib.auth.
- In order to display the error message i've described above, what would be the best way for me to go about this? Please bear in mind i'm using django-registration and so a lot of the plumbing is done already. i'd rather not modify this or rewrite everything. if possible, i'm looking for an.... "elegant" solution.
Thanks in advance
with respect to Q1,