Bonjour est ce possible d'ajouter l'action vers une page twig ici

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
 
public function buildForm(FormBuilderInterface $builder, array $options)
    {
 
$builder
            ->add('title',null,array(
                'required' => false,
            ))
 
            ->add('search','submit',array(
                'attr' => array(
                    'class' => 'btn btn-primary',
 
                )
            ))
        ;
 
    }