-
Hello, I’ve been trying to integrate django-s3file into a Django project that involves dynamically generated forms within formsets. Specifically, I use custom JavaScript to add extra forms to a formset dynamically. However, these dynamically added forms do not have valid signed POST URLs for S3 file uploads, which causes some issues. Currently, it seems that the Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi @mfisco, Thank you for reaching out. Yes, that is possible. You simply need to remove Cheers! |
Beta Was this translation helpful? Give feedback.
Ah, I see. OK. You can set a storage per model field in Django. This would allow you to mix and match. However, are you dealing with really large files at the moment? If not, I wouldn't necessarily recommend using the optimized storage. Usually, you can ignore the overhead of IO inside an AWS region. Of course, that hit's it's limits if you are dealing with video files. But for everything else, you shouldn't notice any difference. If you have further questions, please ask. Cheers! Joe