24 lines
679 B
Twig
24 lines
679 B
Twig
{% extends "base.twig" %}
|
||
|
||
{% block title %}Détails de l'utilisateur{% endblock %}
|
||
|
||
|
||
|
||
{% block content %}
|
||
|
||
<h1>Détails pour l’utilisateur {{ user.login }}</h1>
|
||
<div class="container bg-white w-25 border my-2">
|
||
<p>ID : {{ user.id }}</p>
|
||
<p>Login : {{ user.login }}</p>
|
||
<p>FirstName : {{ user.firstname }}</p>
|
||
<p>LastName : {{ user.lastname }}</p>
|
||
<p>Role : {{ user.role.name }}</p>
|
||
</div>
|
||
<div>
|
||
<button type="button" class="btn btn-warning"
|
||
onclick="window.location.href='edit.php?id={{ user.id }}'">Modifier</button>
|
||
<button type="button" class="btn btn-danger"
|
||
onclick="window.location.href='delete.php?id={{ user.id }}'">Supprimer</button>
|
||
</div>
|
||
|
||
{% endblock %} |