Re: User editing/adding broken in Admin interface

2006-06-12 Thread tomass
I changed the model name from Email to ProvEmail and that fixed it. Seems like this may be a bug related to the one you were mentioning. Thanks, Tom --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" gr

Re: User editing/adding broken in Admin interface

2006-06-12 Thread tomass
I've changed it to email_owner, and I still get the same message... Incidentally, I don't have a model named owner, but changed it in case it was a reserverd word... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "

Re: User editing/adding broken in Admin interface

2006-06-12 Thread Michael Radziej
tomass wrote: > It seems to be related to this in my models: > > from django.contrib.auth.models import User > > class Email(models.Model): > owner = models.ForeignKey(User) > ... > ... > > If I comment out this line, I'm good. What's am I doing wrong here? I have seen the same message u

Re: User editing/adding broken in Admin interface

2006-06-12 Thread tomass
It seems to be related to this in my models: from django.contrib.auth.models import User class Email(models.Model): owner = models.ForeignKey(User) ... ... If I comment out this line, I'm good. What's am I doing wrong here? --~--~-~--~~~---~--~~ You recei

User editing/adding broken in Admin interface

2006-06-12 Thread tomass
Hi Folks, Can anyone help out with a broken part of the admin interface? I get this message if I try to edit a user: AttributeError at /admin/auth/user/1/ 'bool' object has no attribute 'get' Request Method: GET Request URL:http://example.com/admin/auth/user/1/ Exception Type: