2021-04-29 20:51:13 +01:00
|
|
|
{% extends 'stdgrid.html.twig' %}
|
2020-11-29 05:47:25 +00:00
|
|
|
|
2021-09-17 20:33:02 +01:00
|
|
|
{% block title %}Groups{% endblock %}
|
2020-11-29 05:47:25 +00:00
|
|
|
|
|
|
|
{% block body %}
|
2021-11-26 13:05:23 +00:00
|
|
|
<div class="feed">
|
2021-09-17 20:33:02 +01:00
|
|
|
<div class="groups">
|
|
|
|
{% if groups is defined and groups is not empty %}
|
|
|
|
{% for group in groups %}
|
|
|
|
{% include 'directory/group.html.twig' with {'group': group, 'have_user': have_user} only %}
|
|
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
|
|
<h1>{% trans %}No groups here.{% endtrans %}</h1>
|
|
|
|
{% endif %}
|
2020-11-30 02:25:22 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-11-26 13:05:23 +00:00
|
|
|
{% endblock body %}
|