Last active
December 18, 2015 13:48
-
-
Save jiceb/5792314 to your computer and use it in GitHub Desktop.
Twig tips
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# | |
title: Combines a loop with a logical if statement | |
url: http://symfony.com/doc/current/book/templating.html | |
#} | |
<ul> | |
{% for user in users if user.active %} | |
<li>{{ user.username }}</li> | |
{% else %} | |
<li>No users found</li> | |
{% endfor %} | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment