Files
vision/templates/group/employee.html.twig
Xbird 9f22f5b1ee V-Beta-1.0.0
Vision is out of alpha !
2022-02-02 17:46:29 +01:00

15 lines
435 B
Twig

{% 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 %}