- Relations entre entités (User, Intervention, etc.)\n- Formulaires adaptés\n- Refacto visuel des vues\n- Nouvelle base.html.twig\n- Dashboards par rôle
15 lines
461 B
Twig
15 lines
461 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Modifier un utilisateur{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1 class="mb-4">✏️ Modifier un utilisateur</h1>
|
|
|
|
{{ include('user/_form.html.twig', {'button_label': 'Mettre à jour'}) }}
|
|
|
|
<div class="mt-3">
|
|
<a href="{{ path('app_user_index') }}" class="btn btn-secondary">← Retour à la liste des utilisateurs</a>
|
|
{{ include('user/_delete_form.html.twig') }}
|
|
</div>
|
|
{% endblock %}
|