V-Beta-1.0.0

Vision is out of alpha !
This commit is contained in:
Xbird
2022-02-02 17:46:29 +01:00
parent 797bf35b47
commit 9f22f5b1ee
2297 changed files with 278438 additions and 76 deletions

View File

@@ -0,0 +1,15 @@
{% extends 'base.html.twig' %}
{% block title %}{% trans %}title_group_subgroup_view{% endtrans %}{% endblock %}
{% block body %}
<div class="row">
<div class="col-lg-6">
<h2>{% trans %}title_subgroup{% endtrans %}: {{subgroup.name}} {% include '_cells/adminSubGroupActions.html.twig' with {'subgroup': subgroup} %}</h2>
<hr>
<h3>{% trans %}title_members{% endtrans %}</h3>
<hr>
{% include '_cells/adminUserTable.html.twig' with {'users': subgroup.users} %}
</div>
</div>
{% endblock %}