[ad_1]
How to send “get” request in the same page URL with other parameters present already.
I have a URL http://127.0.0.1:8000/search/?search=adi , and inside this , I have another form which takes and sends “get” request . I want to submit that “Get” request in same page via the form.
I tried
<form action="{{ request.get_full_path }}" method="get">
but this does not give the “search=adi” parameter after form is submitted.
I want to send like http://127.0.0.1:8000/search/?search=adi&min=100&max=120
[ad_2]