Django Multiple File Field

Viewed 28299

Is there a model field that can handle multiple files or multiple images for django? Or is it better to make a ManyToManyField to a separate model containing Images or Files?

I need a solution complete with upload interface in django-admin.

4 Answers
Related