I want to render multiple dicts json to front. All in the same interface. But each one in a specific tab. And the tabs have to be created dynamically based on the number of dicts. A basic example
[{"name" = a, "age" = 29},{"name" = b, "age" = 19}, {"name" = c, "age" = 28}]
The first tab will be a table containing the first dict {"name" = a, "age" = 29}, the second tab a table containing {"name" = b, "age" = 19} and so one. Knowing that I don't now the length of json in advance
The question is not very clear but from what I understood, you can do something like this:
{% for tab in my_tab_list %}
<tab> Name: {tab.name} Age: {tab.age} </tab>
{% endfor %}