【发布时间】:2018-07-22 20:25:32
【问题描述】:
我想定制我的模板。
service.yml:
admin.globaux:
class: AppBundle\Admin\ParametreAdmin
arguments: [~, AppBundle\Entity\ParametreEntity, ~]
tags:
- { name: sonata.admin, manager_type: orm, group: Options, label: Globaux}
calls:
- [ setTemplate, [list, "@SonataAdmin/CRUD/Special/list_parametre_globaux.html.twig"]]
public: true
list_parametre_globaux.html.twig:
{% extends base_template %}
<div>
{{ object.pourcentageMise }}
</div>
我有这个错误:
(1/1) ServiceNotFoundException 服务“admin.globaux”依赖于不存在的服务“SonataAdmin/CRUD/Special/list_parametre_globaux.html.twig”。
我不明白为什么它不起作用。
感谢您的帮助
【问题讨论】:
-
您使用的是哪个奏鸣曲管理版?
标签: php templates bundle sonata