<ul>
{% for aktor in dane %}
<li>
<a href="{{ path('aktor_show', { 'id': aktor.id }) }}">
{{ aktor }}
</a>
</li>
{% endfor %}
</ul>
Listing 34.3. Widok częściowy /views/Aktor/_list.html.twig prezentujący listę aktorów
Rozdział 34. Relacje, akcje index i show oraz widoki częściowe