skip to Main Content

cant upload multiple images djago – ajax – Jquery ajax

I'm trying to upload multiple images with ajax request, i'm using modelformset_factory to upload several images , here is my code : class Document(models.Model): booking =models.ForeignKey(Booking,on_delete=models.PROTECT) docs = models.ImageField(upload_to=upload_docs) my forms.py class UploadDocumentsForm(forms.ModelForm): class Meta: model = Document fields =…

VIEW QUESTION

How to auto check radio button basis of two radio button groups – Shopify

<div class="product_colors"> <span class="header" style="display:block;">Color</span> <label class="color_label active"> <input type="radio" name="product_color" value="gold" >Gold <span style="""></span> </label> <label class="color_label"> <input type="radio" name="product_color" value="rose gold">Rose Gold <span style="" data-title="rose gold"></span> </label> <label class="color_label"> <input type="radio" name="product_color" value="silver" > Silver <span style="" data-title="silver"></span>…

VIEW QUESTION
Back To Top
Search