HubL - query_dict - get keys and values

@diavolino I think you forgot the “.items()”. Try this:

{% for key, value in request.query_dict.items() %}
 {{ loop.index }} | {{ key }} | {{ value }}<br>
{% endfor %}