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