Yeah, I had to add a related_name to my ForeignKeys e.g:
    first_photo = models.ForeignKey(Image, blank=True, null=True,
related_name="first photo")

The problem now is that with foreign keys, it generates a drop down
list to select the images - whereas, I want a browse type text box to
choose an image..... - is there anyway to tell the foreignkey field to
render the items pointed to by the foreign key, rather than just
render a drop down list?

On Jan 21, 3:14 am, "Karen Tracey" <kmtra...@gmail.com> wrote:
> On Tue, Jan 20, 2009 at 2:28 AM, DragonSlayre <lssay...@gmail.com> wrote:
> > [snip details of problem]
>
> > This gives me loads of errors - i'm pretty sure it's because of the
> > ForeignKeys.
>
> Without trying it, I'm guessing you got four errors.  If they are the errors
> I think they are, the error message actually tries pretty hard to point you
> in the right direction of fixing them.  Did you try following the advice in
> the error message?  If you do not understand the error message, it would
> help if you included it with your question as well as what it is you don't
> understand in what it is trying to say, which would help people try to frame
> an answer to address whatever misunderstanding is causing the confusion.  As
> it is I'm just guessing that if you read and follow the advice in the error
> messages you can make the errors go away pretty easily.
>
> Karen
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to