bonjour,
je suis sur symfony, j'ai deux fichier Abonnées.html.twig et index.html.twig et j'aimerais hérité le contenue de index.html.twig qui sont dans le même dossier du coup dans mon fichier index.html.twig j'ai créer un block:
index.html.twig
<div class="tab-pane fade active" id="AbonneesFR">
{% block Abonnees %}{% endblock %}</div>
et dans Abonnées.html.twig j'ai fait un
Abonnees.html.twig
{% extends 'index.html.twig' %}
{% block Abonnees %}
<p> test </p>
{% endblock %}
mais sa ne marche pas des sugesstions?