как я могу шаблонизировать вложенную коллекцию?.
Я создаю родительскую коллекцию шаблонов с блоком:
{% block _group_match_groupMatchType_entry_row %}
В этом блоке у меня есть коллекция:
<div class="js-collection-parrent round text-right" data-prototype="{{ form_row(form.matchResult.vars.prototype)|e('html_attr') }}">
Как получить каждую строку записи коллекции matchResult, в которой есть родительская коллекция groupMatchType?
GroupMatchType
$builder
->add('groupMatchType', CollectionType::class, [
'entry_type' => MatchType::class,
'allow_add' => true,
'allow_delete' => true,
'by_reference' => false
])
MatchType
$builder
->add('matchResult', CollectionType::class, [
'entry_type' => MatchResultType::class,
'allow_add' => true,
'allow_delete' => true,
'by_reference' => false
])
И просмотр
{% block _group_match_groupMatchType_entry_row %}
<div class="js-collection-parrent round text-right" data-prototype="{{ form_row(form.matchResult.vars.prototype)|e('html_attr') }}"></div>
{% endblock %}
Мне нужно найти имя вышеупомянутого блока (например, _group_match_groupMatchType_entry_row_matchResult_entry_row)