I'm having a problem listing a json in the Django Template. He is organized as follows:
{
'grupo-1':
{
'name': 'Grupo 1',
'ferramentas-1': {
'name': 'Ferramentas 1',
'categoria-1': {'name': 'Categoria 1'},
'categoria-2': {'name': 'Categoria 2'},
'categoria-3': {'name': 'Categoria 3'},
'categoria-4': {'name': 'Categoria 4'},
'categoria-5': {'name': 'Categoria 5'},
'categoria-6': {'name': 'Categoria 6'}
},
'ferramentas-2': {
'name': 'Ferramentas 2',
'categoria-7': {'name': 'Categoria 7'},
'categoria-8': {'name': 'Categoria 8'}
}
},
'grupo-2': {
'name': 'Grupo 2',
'ferramentas-3': {
'name': 'Ferramentas 3',
'categoria-9': {'name': 'Categoria 9'},
'categoria-10': {'name': 'Categoria 10'},
'categoria-11': {'name': 'Categoria 11'},
'categoria-12': {'name': 'Categoria 12'}
},
'ferramentas-4': {
'name': 'Ferramentas 4',
'categoria-13': {'name': 'Categoria 13'},
'categoria-14': {'name': 'Categoria 14'},
'categoria-15': {'name': 'Categoria 15'}
},
'ferramentas-5': {
'name': 'Ferramentas 5',
'categoria-16': {'name': 'Categoria 16'}
}
}
}
I would like to print the information the same way. Only without displaying the slug. In the case, in each category I would create a link passing the category, tool and group (the slugs) to mount the url (route).
<a href="{% url 'ferramentas:get_tools' group=group.slug tools=tools.slug category=category.slug %}">{{category.name}}</a>