Re: Post multiple data

2023-08-09 Thread ivan harold
maybe this will help " from django.conf import settings class Design(models.Model): human_readable_id = models.CharField(max_length=10, default=id_generator, db_index=True) manager = models.CharField(max_length=40) worker = models.ForeignKey( settings.AUTH_USER_MODEL, on_delete=model

Re: Post multiple data

2023-08-08 Thread Hendry Revenus
Thank you On Tue, 8 Aug 2023, 14:57 Prashanth Patelc, wrote: > I'm not able to send multiple data in front -end . > > On Tue, Aug 8, 2023, 5:21 PM Mz Gz wrote: > >> Check the object sent from frontend using developer tools in browser. >> >> If the object is sent correctly to backend. >> >> Just

Re: Post multiple data

2023-08-08 Thread Prashanth Patelc
I'm not able to send multiple data in front -end . On Tue, Aug 8, 2023, 5:21 PM Mz Gz wrote: > Check the object sent from frontend using developer tools in browser. > > If the object is sent correctly to backend. > > Just access is from POST dict > > On Tue, 8 Aug 2023, 1:19 pm Prashanth Patelc,

Re: Post multiple data

2023-08-08 Thread Mz Gz
Check the object sent from frontend using developer tools in browser. If the object is sent correctly to backend. Just access is from POST dict On Tue, 8 Aug 2023, 1:19 pm Prashanth Patelc, wrote: > Hi all, > > I'm sending multiple rows data through html but I'm unable to save data in > django