我是 Twig 的新手,我想知道如何在循环中转到下一个值
这是一个简单的例子:
{% for user in users %}
<table>
<tr>
<td>
{{ user.username }}
</td>
<td>
{# here i want to print the next username in the same line of the table #}
</td>
</tr>
</table>
{% endfor %}
谢谢你的帮助对不起我的英语不好