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-12-28 02:10:58 +09:00
|
|
|
<section class="section-widget section-padding">
|
|
|
|
<h2 class="section-title">{{ "Groups" | trans }}</h2>
|
|
|
|
|
|
|
|
<div class="section-padding">
|
|
|
|
{% if groups is defined and groups is not empty %}
|
|
|
|
{% for actor in groups %}
|
|
|
|
{% block profile_view %}{% include 'cards/profile/view.html.twig' %}{% endblock profile_view %}
|
|
|
|
<hr>
|
|
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
|
|
<h1>{% trans %}No groups here.{% endtrans %}</h1>
|
|
|
|
{% endif %}
|
2020-11-30 11:25:22 +09:00
|
|
|
</div>
|
2021-12-28 02:10:58 +09:00
|
|
|
</section>
|
|
|
|
{% endblock body %}
|