bruno desthuilliers wrote:
> layik wrote:
> > is the bug fixed?
>
> Which one ? and in which version ?
>
> > I didnt quite understand the previous topics.
> > could anyone please tel me what I need to be aware of when trying to
> > extend tables and using OneToOneField
> >
> > many thanks
> >
> >
> >
> >
> >
>
>
> --
> bruno desthuilliers
> développeur
> [EMAIL PROTECTED]
> http://www.modulix.com

sorry, I am using 0.91,
I was reading some posts regardin A bug in it and I was reading it is
now fixed but I wasnt sure which one either!

my problem with 1to1 is:
Class user:
username (UNIQUE)

Class member:
username = meta.foreignKey (users)
email = charfield


in my_view:
u = user.get_object(pk=1)
m = u.get_member() <<===== error: table user has no attribute member
m = member.get_object(username__exact= "me")<<===== error: table user
has no attribute username

does it work for anyone? am I doing the wrong thing? will it work if I
do it the other way??

thanks


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to