[Answer]-Django set GET parameter based on selection

1👍

When a users clicks fr, you can make the url to

localhost:8000/?country=fr

by writing a html like

<a href="/?country={{lang.code}}">{{ lang.code }}</a>

The Url without question is not possible

localhost:8000/country=fr

Leave a comment