Multiple PDF file should upload,along with pdf file selected client and process should dispalay
问题 Uploaded pdf file is showing correctly but selected client is not showing,Client will displayed in dropdown,if we select particular client and upload multiple pdf files,the selected client and files should display. models.py class Client_files(models.Model): Date = models.DateTimeField(default=datetime.now, blank=True) client = models.ForeignKey(Client, on_delete=models.CASCADE,null=True) client_process = models.ForeignKey(Client_Process, on_delete=models.CASCADE,null=True) File_Name = models