Sonata Admin Bundle的文档提供了以下方法来设置每个管理员模板: https://sonata-project.org/bundles/admin/2-0/doc/reference/templates.html
但是现在不推荐使用该方法。有没有一种新的方法(文档中尚未提及),或者开发人员只是因为这种弃用而跳了枪?
答案 0 :(得分:0)
您可以在管理类中使用以下代码为每个管理员定义自定义模板。
background-origin: border-box;
如果您正在使用symfony 4,则必须将树枝文件放置在 templates / sonata_admin / 文件夹中。
树枝文件必须像
public function configure()
{
$this->setTemplate('show', 'sonata_admin/show.html.twig');
// similarly for all actions
}