django-multiupload
django-multiupload copied to clipboard
Dead simple drop-in multi file upload field for Django forms using HTML5's multiple attribute.
Hi @Chive , We would like to know the current status of maintenance of the library so we can support it. Maybe you need at help from my side? I...
fix #50
crispy tags doesn't call `render` method
It's not working with django-crispy-forms, for example: ```html+django {% form|crispy %} ``` will produce input field without `multiple` attribute, this is how crispy template tags are implemented.
Closes #23
hi, love the app. Work with validators was strange for me since app sends all data as one list while validators usually expect single element so I used custom interface...
Anyway you could add an UpdateView to one of your examples as well? The main issue I'm having is initializing the file upload widget with values so that when you...
Hello. I have the following layout ``` class Spam(models.Model) pass class Image(models.Model): spam = models.ForeignKey(Spam) image = models.ImageField() ``` I now want to add several images to ``Spam`` in admin....