JQueryRating Field (view demo)
You need to download the resources manually from here. Add the CSS and JS in to your template, and make sure the image paths are correct.
<?php
// ...
public function buildForm(FormBuilder $builder, array $options)
{
$builder
// ...
->add('rating', 'genemu_jqueryrating')
->add('readonly_rating', 'genemu_jqueryrating', array(
'configs' => array(
'readOnly' => true
)
))
}