{% for fcw in form_field_collection_wrapper_list %}
{{relation.opts.verbose_name|capfirst }} #{{ forloop.counter }}
{% if fcw.show_url %}{% if fcw.obj.original %}
View on site
{% endif %}{% endif %}
{% for bound_field in fcw.bound_fields %}
{% if bound_field.not_in_table %}
{% field_widget bound_field %}
{% else %}
{% admin_field_line bound_field %}
{% endif %}
{% endfor %}
{%endfor%}