I want to access the object being edited within a sonata admin edit form. Something like:

{% for prop, value in admin.getDatagrid(object.id) %}
<li>value</li>
{% endfor %}

How can I access the object's data?

有帮助吗?

解决方案

I had to do this:

{% for item in object.items()%}
<li>{{item.id}}</li>
{% endfor %}

'object' accesses the entity directly and I have a getItems method on the entity

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top