{% extends "base.html" %} {% block title %}Relationships - Monglo Admin{% endblock %} {% block header_actions %} {% endblock %} {% block content %}

Relationship Types

One-to-One
One-to-Many
Many-to-Many
Embedded

All Relationships ({{ relationships|length }})

{% if relationships %}
{% for rel in relationships %}
{{ rel.source_collection }}.{{ rel.source_field }}
→ {{ rel.target_collection }}
{{ rel.type }}
{% endfor %}
{% else %}

No relationships detected yet.

Relationships are auto-detected from your data structure.

{% endif %}
{% endblock %}