Question

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?

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top