groups.html.twig 549 B

123456789101112131415161718
  1. {% extends 'stdgrid.html.twig' %}
  2. {% block title %}Groups{% endblock %}
  3. {% block body %}
  4. <div class="feed">
  5. <div class="groups">
  6. {% if groups is defined and groups is not empty %}
  7. {% for group in groups %}
  8. {% include 'directory/group.html.twig' with {'group': group, 'have_user': have_user} only %}
  9. {% endfor %}
  10. {% else %}
  11. <h1>{% trans %}No groups here.{% endtrans %}</h1>
  12. {% endif %}
  13. </div>
  14. </div>
  15. {% endblock body %}