0
I wanted to know what I’m doing wrong, because I created a table in the template taking information from an api. Wanted to order themselves vertically and not in the orizontal.
<!Doctepy html>
<html>
<head>
<title>Teste de Requests</title>
<meta charset="UTF-8">
</head>
<body>
<table border="1">
<tr>
<th bgcolor="red">Pilotos</th>
</tr>
<tr>
{% for i in range(200) %}
{% if "IFATC" in data[i]['DisplayName'] %}
<td align= middle width=100>{{data[i]['DisplayName']}}</td>
{% endif %}
{% endfor %}
</tr>
</table>
</body>
Thanks for the help, with your tip I solved the problem
– Dalmo Cabral