Ohh I forgot you should use .items(), thanks =]
Okay, so this works:
{% for k, v in {"name": current_user, "level": "1", "city": "Carlin",
"health": "100/100", "mana": "100/100"}.items() %}
<tr>
<td class="key">{{ k.title() }}</td>
<td class="value">{{ v }}</td>
</tr>
{% end %}
But this doesn't:
{% for k, v in {"name": current_user,
"level": "1",
"city": "Carlin",
"health": "100/100",
"mana": "100/100"}.items() %}
<tr>
<td class="key">{{ k.title() }}</td>
<td class="value">{{ v }}</td>
</tr>
{% end %}
the {% for %} statement can't be divided to more than one like.