3

我想覆盖默认的 SonataAdmin 模板。

我在我的 Namespace/bundle/resources/views 中创建了一个standard_layout.html.twig(相同的结构,相同的文件名,相同的内容)

我在我的目标模板中复制了源模板的所有内容,我只是在课程之外编辑了目标的某些部分....什么也没有

谢谢你的帮助 再见

4

1 回答 1

7

您有捆绑继承http://symfony.com/doc/current/cookbook/bundles/inheritance.html的解决方案,它不仅允许覆盖模板,还允许覆盖方法。

或者你有http://symfony.com/doc/2.0/book/templating.html#overriding-bundle-templates只关注模板。

最后,您可以尝试创建:

app/Resources/SonataAdminBundle/views/CRUD/base_show_field.html.twig
于 2012-02-01T17:26:59.833 回答