Now I'm making a web app with django. I want to put more than 2 query paramaters into my URL, but if I put some keywords into my search box and send them, the query paramater will show only these keywords. For example, current URL is like below. https://example.com/jobs?area=SYDNEY If I search something, it becomes below. https://example.com/jobs?query=something
This is not what I want. What I want is https://example.com/jobs?area=SYDNEY&query=something
How can I do it?
<form action="" method="get">
<input type="text" name="query" value="{{ request.GET.query }}"><input type="submit" value="Search">
</form>