2021-04-30 04:51:13 +09:00
|
|
|
{% extends 'stdgrid.html.twig' %}
|
2020-11-29 14:47:25 +09:00
|
|
|
|
2021-09-18 04:33:02 +09:00
|
|
|
{% block title %}Groups{% endblock %}
|
2020-11-29 14:47:25 +09:00
|
|
|
|
|
|
|
{% block body %}
|
2021-09-18 04:33:02 +09:00
|
|
|
<div class="timeline">
|
|
|
|
<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 11:25:22 +09:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-09-18 04:33:02 +09:00
|
|
|
{% endblock body %}
|