I'm learning symfony2 and like it very much (migrating from ZendFramework 1.x) but I'm stuck now with twig templating. Can you point me to the right direction?
My application has many customers and each has some customization (mostly templates, but also controllers, etc.).
I try to achieve this by bundle inheritance / I created ClientBundle
which inherits from BaseBundle
holding all basic code and templates... it works as I need for everything bud templates. When I create template in ClientBundle
it overlays the template from BaseBundle
and I cannot get access from the ClientBundle
template to the original template from BaseBundle
. I would like to extend the parent template, not overlay it... is this impossible?
Thank you!