sermandm b35c19fa5b Mise à jour majeure : liaisons entre entités, formulaires et affichages
- 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
2025-04-25 14:55:06 +02:00

14 lines
361 B
Twig
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'base.html.twig' %}
{% block title %}Nouvelle pièce détachée{% endblock %}
{% block body %}
<h1 class="mb-4"> Ajouter une nouvelle pièce</h1>
{{ include('stock/_form.html.twig') }}
<div class="mt-3">
<a href="{{ path('app_stock_index') }}" class="btn btn-secondary">← Retour à la liste</a>
</div>
{% endblock %}