{% load rest_framework %} {% load drf_nested_browsable %}
{% if field.label %}
{{ field.label }}
{% endif %} {% with templateId=field.name|addstr:"-form-template" %}
{% if field.tree_root is None or field.tree_root %} {% with placeholder=field.name|fieldname_to_placeholder %}
{% render_nested field.child prefix=field.name|addstr:"["|addstr:placeholder|addstr:"]" %}
{% endwith %} {% endif %} {% for entry in field.value %}
{% if field.proxied is None %} {% render_nested field.child data=entry prefix=field.name|addstr:"["|addstr:forloop.counter0|addstr:"]" %} Not proxied {% else %} {% render_nested field.proxied.child data=entry prefix=field.name|addstr:"["|addstr:forloop.counter0|addstr:"]" %} Proxied {% endif %}
{% endfor %}
{% endwith %}