enorme push

This commit is contained in:
2024-10-25 16:49:52 +02:00
parent 829d121268
commit 52faa489fa
23 changed files with 448 additions and 166 deletions

View File

@@ -0,0 +1,17 @@
{% extends "base.twig" %}
{% block title %}Modification du rôle{% endblock %}
{% block content %}
<h1>Modifier un rôle</h1>
<form method="post">
<label for="name">Nom</label>
<input type="text" class="form-control" name="name" id="name" value="{{ role.name }}">
<input type="submit" class="btn btn-success" name="Enregistrer" value="Enregistrer" />
<input type="hidden" name="id" value="{{ role.id }}">
</form>
{% endblock %}