Hi, to begin with I would like to declare that I'm still on the beginner end of the scale when it comes to Python and Django.
I have an app which has two models: class Item(models.Model): title = models.CharField() description_markdown = models.TextField() class ItemImage(models.Model): item = models.ForeignKey(Item) image = models.ImageField(upload_to='tmp') What I want to do now is to create a page where users can submit an item and upload an image (or images) at the same time. I can create a form using ModelForm for the Item-model and I can create a form for the ItemImage-model using inlineformset_factory, if I do this the submit page looks like it should. However it doesn't behave the way I want it to when saving, but to be honest I have no real idea of what I'm doing when it comes to the related model/form. If I understand it correctly when using inlineformset_factory I must give it an instance so that it can map the foreignkey, correct? So how do one go about and create a form where people can add "item" and "itemimages" at the same time? I'm feeling totaly lost any pointers would be greatly appreciated. -- Stefan Nitsche ste...@nitsche.se -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@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.