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,14 @@
{% extends 'base.html.twig' %}
{% block title %}{% trans %}title_employee_administration{% endtrans %}: "{{ employee.fullName }}"{% endblock %}
{% block body %}
<div class="row">
<div class="col-lg-4">
{{form(form)}}
</div>
<div class="col-lg-4">
{% include '_cells/userInformations.html.twig' with {'user': employee} %}
</div>
</div>
{% endblock %}

View File

@@ -0,0 +1,23 @@
{% extends 'base.html.twig' %}
{% block title %}{% trans %}title_group_administration{% endtrans %}{% endblock %}
{% block subtitle %}{% trans %}title_group_administration{% endtrans %} {{ app.user.mainGroup.name }}{% endblock %}
{% block body %}
<div class="row">
<div class="col-12 col-lg-6">
<h3>{% trans %}title_members{% endtrans %}</h3> <hr>
<div class="row">
<div class="col-12">
{% include '_cells/userTable.html.twig' with {'users': group.users} %}
</div>
</div>
</div>
<div class="col-12 col-lg-4">
<h3>{% trans %}title_motd{% endtrans %}</h3> <hr>
{{form(formMOTD)}}
</div>
</div>
{% endblock %}