array:[
{
"tipo": "1",
"ganador": "2",
"premio": "45"
},
{
"tipo": "2",
"ganador": "5",
"premio": "6545"
},
{
"tipo": "3",
"ganador": "8",
"premio": "6654895"
},
]
I need to access all the values ββand keys of the array and display them in a table. I tried this
<tr>
{% for key in array %}
<td>{{key}}</td>
{% endfor %}
</tr>
and it doesn't show any value