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

23 lines
909 B
Twig

{% extends 'base.html.twig' %}
{% block title %}{% trans %}title_user_profile{% endtrans %}{% endblock %}
{% block subtitle %}{{ user.fullName }}{% endblock %}
{% block body %}
<div class="row">
<div class="col-12 col-lg-4 mb-5">
<h2>{% trans %}title_informations{% endtrans %}</h2>
<hr>
{% include '_cells/userInformations.html.twig' with {'user': user} %}
</div>
<div class="col-12 col-lg-4">
<h2>{% trans %}title_actions{% endtrans %}</h2>
<hr>
<p><a href="{{ path('user_view_documents', {'id': user.id}) }}" class="btn btn-success">{% trans %}button_view_user_documents{% endtrans %}</a></p>
{% if app.user.hasPermission('group_sanction') %}
<p><a href="{{ path('user_view_sanctions', {'id': user.id}) }}" class="btn btn-warning">{% trans %}button_view_user_sanctions{% endtrans %}</a></p>
{% endif %}
</div>
</div>
{% endblock %}