0
양식 렌더링과 관련하여 약간의 문제가 있습니다. 특히 양식을 렌더링하고 있지만 설명 값을 가져올 수 없습니다. 다음과 같이 양식을 렌더링합니다.eZ Publish 5의 렌더링 양식
{{ form_start(form) }}
{{ form_errors(form) }}
{% for form_child_key, form_child in form.children %}
This is label; {{ form_child.vars.label }}
and here i whant to render description like this:
{{ form_child.vars.description }} but this is not working
{% endfor %}
{{ form_end(form) }}