{% for k, v in request.session.items() %}
{{ k }}
{% if v is iterable and not v|string %}
{{ v }}
{% else %} {{ v }} {% endif %}
{% endfor %}