Re: Additional data added to the HTTP Get Request.

2020-05-09 Thread Eric Kamara
Hi Ronald, I don't think you are quoting your data-url tag properly in the html form. If you notice, you are missing the closing quotation(") which causes the to be added to the url. Regards, On Sat, 9 May 2020 at 18:58, Ronald Kamulegeya < ronald.kamulegeya.2...@gmail.com> wrote: > Hello Memb

Re: Additional data added to the HTTP Get Request.

2020-05-09 Thread Ronald Kamulegeya
It is true! I have spend whole morning trouble shooting it! Thanks so much! On Sat, May 9, 2020 at 12:10 PM Shaheed Haque wrote: > I think you are missing a closing double quote on your data-url. > > On Sat, 9 May 2020, 09:59 Ronald Kamulegeya, < > ronald.kamulegeya.2...@gmail.com> wrote: > >>

Re: Additional data added to the HTTP Get Request.

2020-05-09 Thread Ronald Kamulegeya
Found out the cause of my troubles New Tenant I was missing " ...OMG...now working! On Sat, May 9, 2020 at 11:58 AM Ronald Kamulegeya < ronald.kamulegeya.2...@gmail.com> wrote: > Hello Members. > > I am a django beginner and i am going trough online tutorials. > > I have

Re: Additional data added to the HTTP Get Request.

2020-05-09 Thread Shaheed Haque
I think you are missing a closing double quote on your data-url. On Sat, 9 May 2020, 09:59 Ronald Kamulegeya, < ronald.kamulegeya.2...@gmail.com> wrote: > Hello Members. > > I am a django beginner and i am going trough online tutorials. > > I have the following view functions: > > # Create your v

Additional data added to the HTTP Get Request.

2020-05-09 Thread Ronald Kamulegeya
Hello Members. I am a django beginner and i am going trough online tutorials. I have the following view functions: # Create your views here. def save_tenant_form(request, form, template_name): data = dict() if request.method == 'POST': if form.is_valid(): form.save()