<thead>
<th> username </th>
<th>place</th>
</thead>
{% for i, j in user_group1, user_group2 %}
<tbody>
    {% if i %}
    <td>{{ i.username }}</td>
    <td>{{ i.place }}</td>
    {% else %}
    <td>{{ j.username }}</td>
    <td>{{ j.place }}</td>
    {% endif %}
</tbody>
{% endfor %}
I want to use two for loops in a sinle table body. First i need to start the first one and after that i need to start the next one. how can i do this
 
    