gkuhn1 / django-admin-multiupload

Multi file upload for django-admin app
71 stars 65 forks source link

Inlines #6

Closed maremaremare closed 10 years ago

maremaremare commented 10 years ago

Is there a way to use the app via inlines?

gkuhn1 commented 10 years ago

Hi, To upload many images to server, we need to attach them to some object. If you want to do an inline include, the "master" object will exists only when you send the form so we need to first send master object data, validate it, save it, and then send all images, validate and attach to object. This app do not do this.

maremaremare commented 10 years ago

Thanks.