Context
I'm trying to build a custom html column for a custom entity grid. I have searched in the Oro Platform Core to find the right entries for the datagrids.yml
columns:
id:
label: ID
frontend_type: integer
name:
label: app.vehicule_type.fields.name
logo:
label: app.vehicule_type.fields.logo
type: twig
frontend_type: html
template: BaltimoreAppBundle:Attachment:Datagrid/Property/image.html.twig
BaltimoreAppBundle is my bundle name and image.html.twig is the custom template file.
Issue
OroPlatform/Symfony can't understand my bundle alias BaltimoreAppBundle, so I've got an error.
Any idea why my alias doesn't works ?
Thanks.
