Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
deleted 24 characters in body
Source Link
CPPUIX
  • 2.4k
  • 8
  • 17
  • 38

It should help you.

{% for user in users if user.active and user.id not 1 %} {{ user.name }} {% endfor %} 
{% for user in users if user.active and user.id not 1 %} {{ user.name }} {% endfor %} 

More info: http://twig.sensiolabs.org/doc/tags/for.html

It should help you.

{% for user in users if user.active and user.id not 1 %} {{ user.name }} {% endfor %} 

More info: http://twig.sensiolabs.org/doc/tags/for.html

{% for user in users if user.active and user.id not 1 %} {{ user.name }} {% endfor %} 

More info: http://twig.sensiolabs.org/doc/tags/for.html

Source Link
FDisk
  • 9.7k
  • 2
  • 54
  • 56

It should help you.

{% for user in users if user.active and user.id not 1 %} {{ user.name }} {% endfor %} 

More info: http://twig.sensiolabs.org/doc/tags/for.html