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 :)
-- 
Email: [EMAIL PROTECTED]
Jabber: [EMAIL PROTECTED]
Site: http://ge3k.net
PGP Key: 66A612C6
-- 
Email: [EMAIL PROTECTED]
Jabber: [EMAIL PROTECTED]
Site: http://ge3k.net
PGP Key: 66A612C6


--~--~---------~--~----~------------~-------~--~----~
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