Re: Django UpdateView and Createview

2018-12-11 Thread Sidnei Pereira
Could you point out what exactly was the problem and how did you solve it? A proper feedback is usually useful for those who were helping or those with the same issue. Thanks in advance. Em terça-feira, 11 de dezembro de 2018 10:27:08 UTC-2, Rupam Hazra escreveu: > > Thanks, it is working >

Re: Django UpdateView and Createview

2018-12-11 Thread Rupam Hazra
Thanks, it is working On Monday, 10 December 2018 18:19:34 UTC+5:30, Sidnei Pereira wrote: > > Hi, > > I don't know if I got it right , but you want to add/update as many > instance of Technologies as you want when creating/updating a Project, > right? Like when you use an inline on Django's

Re: Django UpdateView and Createview

2018-12-10 Thread Ryan Nowakowski
Hrrmmm... that documentation link should've answered most of your questions. It would be easier to help you if you can say specifically what you're confused about. On Mon, Dec 10, 2018 at 01:34:53AM -0800, Rupam Hazra wrote: > Hi all, > > I know and understand how update view working but in my c

Re: Django UpdateView and Createview

2018-12-10 Thread Sidnei Pereira
Hi, I don't know if I got it right , but you want to add/update as many instance of Technologies as you want when creating/updating a Project, right? Like when you use an inline on Django's admin .

Re: Django UpdateView and Createview

2018-12-10 Thread Rupam Hazra
Hi all, I know and understand how update view working but in my case how to implement on my case. Please suggest.; On Sunday, 9 December 2018 23:13:04 UTC+5:30, Okware Aldo wrote: > > Ryan's suggestion should give you a starting point. > > On Sun, Dec 9, 2018 at 3:43 PM Deepak Kumar > wrote:

Re: Django UpdateView and Createview

2018-12-09 Thread Okware Aldo
Ryan's suggestion should give you a starting point. On Sun, Dec 9, 2018 at 3:43 PM Deepak Kumar wrote: > On Sunday, December 9, 2018 at 6:21:55 AM UTC+5:30, Ryan Nowakowski wrote: > > Take a look at > https://docs.djangoproject.com/en/2.1/topics/class-based-views/generic-editing/ > > > > > > On

Re: Django UpdateView and Createview

2018-12-09 Thread Deepak Kumar
On Sunday, December 9, 2018 at 6:21:55 AM UTC+5:30, Ryan Nowakowski wrote: > Take a look at > https://docs.djangoproject.com/en/2.1/topics/class-based-views/generic-editing/ > > > On December 7, 2018 7:09:25 AM CST, Rupam Hazra wrote: > > Hi, > > > I have working in a TaskManagement Sytem wh

Re: Django UpdateView and Createview

2018-12-08 Thread Ryan Nowakowski
Take a look at https://docs.djangoproject.com/en/2.1/topics/class-based-views/generic-editing/ On December 7, 2018 7:09:25 AM CST, Rupam Hazra wrote: >Hi, > >I have working in a TaskManagement Sytem where i have *project *module >and *technology >*module. > >class ProjectMaster(models.Model): >

Django UpdateView and Createview

2018-12-07 Thread Rupam Hazra
Hi, I have working in a TaskManagement Sytem where i have *project *module and *technology *module. class ProjectMaster(models.Model): name=models.CharField(max_length=255,blank=True,null=True) description=models.CharField(max_length=255,blank=True,null=True) is_agreement_sent=model