Symfony2 choix split dans twig

OK, donc j'ai un formulaire choix avec 2 options

$builder->add('type', 'choice', array(
    'label' => 'User type',
    'choices' => array('1' => 'Customer', '2' => 'Supplier'),
    'expanded' => true,
    'multiple' => false,
    'required' => false,
));

Et je veux options de split en vue à l'aide de twig pour obtenir quelque chose comme ceci:

{{ form_widget(form.type/choice_1/) }}
some html stuf
{{ form_widget(form.type/choice_2/) }}

Toutes les suggestions?

OriginalL'auteur Wolly Wombat | 2012-09-20