- 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
488 B
Twig
15 lines
488 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Modifier une intervention{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1 class="mb-4">✏️ Modifier l'intervention</h1>
|
|
|
|
{{ include('intervention/_form.html.twig', {'button_label': 'Mettre à jour'}) }}
|
|
|
|
<div class="mt-3">
|
|
<a href="{{ path('app_intervention_index') }}" class="btn btn-secondary">← Retour à la liste des interventions</a>
|
|
{{ include('intervention/_delete_form.html.twig') }}
|
|
</div>
|
|
{% endblock %}
|