doughnut-wedding/app/Resources/FOSUserBundle/views/Group/list_content.html.twig

8 lines
227 B
Twig
Raw Normal View History

2017-04-09 18:08:01 -07:00
<div class="fos_user_group_list">
<ul>
{% for group in groups %}
<li><a href="{{ path('fos_user_group_show', {'groupName': group.getName()} ) }}">{{ group.getName() }}</a></li>
{% endfor %}
</ul>
</div>