{% include "relations/partials/list_relations.html" %}
{% for target in possible_targets %}
{% with object.id|stringformat:"i" as object_id %}
{% with "rel_"|add:object_id|add:"_"|add:target.name as replace_id %}
{% with target|model_meta:"object_name" as table_suffix %}
{% get_relation_between_content_types object.content_type target as relation_types %}
{% relations_instances_from_relation_types relation_types as relations %}
{% include "relations/partials/list_relations.html" %}
{% if linkify %}
{% natural_keys_by_content_types relation_types as relation_types_natural_keys %}
{% for relation_type in relation_types %}
{% include "relations/partials/create_relation_link.html" with relation_types=relation_types_natural_keys|join:"," %}
{% endfor %}
{% endif %}
{% endwith %}
{% endwith %}
{% endwith %}