I am having hard times to append a new criteria to the existing url
say, i have this url after search-submit:
/found_items/?state=bla&score=bla
and in the result page, i have a paginator, i want that if you click on next
button, the url above should remain and new ?page=number
should be appended to this url.
<a href="?page={{ locs.next_page_number }}">next</a>
what is happening now is, /found_items/?state=bla&score=bla
is disappearing and becoming
/?page=number
.
I want this: /found_items/?state=bla&score=bla&page=numer
how can i do this?