For my need, I'm planning to add a custom column to a entity list. I've written this inside the configureListFields :
->add('_action', 'actions', array(
'actions' => array(
'code' => array('template' => 'BOBAdminBundle:test:custom.html.twig'),
)
))
My twig :
<img src="{{ asset('bundles/sonataadmin/famfamfam/delete.png') }}" />
It works. Problem : I don't know why :S, since I've just copy/paste the code from somewhere. I figured out than the '_action' determined the name of the column. But what if I want to change it ? Where does this 'actions' name come from ? Where can I change it ?