I have the following dictionary
{
2: {'name': 'e', 'abilities': [] },
3: {'name': 'xyx', 'abilities': []},
1: {'name': 'user', 'abilities': ['can_add', 'can_delete']}
}
How can I iterate on it in jinja2
using flask
?
I need to get id,name,abilities.