<form action="/i18n/setlang/" method="post">
<input name="next" type="hidden" value="/next/page/" />
<select name="language">
{% for lang in LANGUAGES %}
<option value="{{ lang.0 }}">{{ lang.1 }}</option>
{% endfor %}
</select>
<input type="submit" value="Go" />
</form>
But I want to implement this using hyperlinks and want to know how.
You'll need to write your own view to handle this (you could look at
Django's view for inspiration). Django intentionally doesn't support
this because it's bad practice (using a GET request to initiate a state
change).
Regards,
Malcolm