On Sun, 2007-11-11 at 19:57 +1000, Patrick Ohearn wrote:
> On Sun, 2007-11-11 at 20:39 +1100, Malcolm Tredinnick wrote:
> > 
> > On Sun, 2007-11-11 at 01:30 -0800, Patrick Ohearn wrote:
> > > I am writing a simple blog application with Django 0.96. I intend to
> > > use
> > > the built in Admin page to manage my blog, so I wish to use Django's
> > > User Authentication system. In my Blog model I need to make a
> > > relationship for my 'user' field to the auth_user table, but I can not
> > > find the model name to link it to.
> > 
> >         django.contrib.auth.models.User
> >         
> > You're creating a link to the User model.
> > 
> > Regards,
> > Malcolm
> > 
> I have tried adding the following lines to by models.py.
> 
>     author = models.ForeignKey(User)
>     author = models.ForeignKey(django.contrib.auth.models.User)
> 
> Both to no avail, thank you for your help so far :)

Where "no avail" means you got an error because you forgot to import the
remote code, or nothing happened at all, or you got some other Django
error (or Python error), or your machine caught on fire, or ...?

With more clues come more answers.

Malcolm

-- 
Experience is something you don't get until just after you need it. 
http://www.pointy-stick.com/blog/


--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to