No lo hice yo, lo generé automaticamente por el terminal, por eso me parece raro que no funcione, he metdo el template y tampoco
Código PHP:
/**
* Lists all Roles entities.
*
* @Route("/", name="admin_role")
* @Method("GET")
* @Template("TMKAdminBundle:Roles:index.html.twig")
*/
public function indexAction()
{
$em = $this->getDoctrine()->getManager();
$entities = $em->getRepository('TMKAdminBundle:Roles')->findAll();
return array(
'entities' => $entities,
);
}