Hi In my application, I used django-registration to allow users to login. Authenticated users can use all features of the site while Anonymous user should be able to use some portion of the site. When django makes a request for an authenticated user, it creates a request.user object that is derived from django's User class, while the same for non-authenticated user is Anonymous user class.
The problem I am facing is that these two classes are different but my model can only handle instance of User class. Hence it works for authenticated users but not for Anonymous users!! I searched online and found a few people have faced the same problem but their solution is not django elegant. For many such problems I just had to do some topeka search and find a solution. In this case, topeka search did not help. Any idea what I should do? Ravi -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.