bonjour les amis,

je voudrais utiliser bootstrap celui qui est intégré dans Symfony de base.

j'ai donc cette page :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 
{% extends '::base.html.twig' %}
 
   {% form_theme edit_form 'bootstrap_3_layout.html.twig' %}
   {% form_theme delete_form 'bootstrap_3_layout.html.twig' %}
 
{% block body -%}
    <h1>Dataet edit</h1>
 
    {{ form(edit_form) }}
 
        <ul class="record_actions">
    <li>
        <a href="{{ path('dataet') }}">
            Back to the list
        </a>
    </li>
    <li>{{ form(delete_form) }}</li>
</ul>
{% endblock %}

et bien mon formulaire reste non habillé par bootstrap

une idée ?