I wanted to know what I was doing wrong, because I created a table in the template taking information from an api. He wanted to sort himself vertically rather than horizontally.
<!Doctepyhtml><html><head><title>TestedeRequests</title><metacharset="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>