I've installed SonataAdminBundle and SonataUserBundle and I'm trying to override some twig templates. I've done succesfully with all except with user_block.html.twig
This is my proyect ../app/Resources/ directory structure:
Resources/
├── ApplicationSonataUserBundle
│ └── views
│ ├── Admin
│ │ └── Core
│ │ └── user_block.html.twig <--- it doesn't work
│ ├── layout.html.twig
│ ├── Profile
│ │ ├── action.html.twig
│ │ ├── edit_authentication.html.twig
│ │ ├── edit_profile.html.twig
│ │ └── show.html.twig
│ └── Security
│ └── login.html.twig
├── SonataAdminBundle
│ └── views
│ └── standard_layout.html.twig
└── TwigBundle
└── views
└── Exception
└── error.html.twig
Also I've tried put it under SonataAdminBundle or SonataUserBundle directory but nothing, it didn't work for me.
How can I override user_block template?
Thanks