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-12-27 17:10:58 +00: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 02:25:22 +00:00
|
|
|
</div>
|
2021-12-27 17:10:58 +00:00
|
|
|
</section>
|
|
|
|
{% endblock body %}
|