{% extends "base.html" %} {% load scoped_tags %} {% block title %}Connectors{% endblock %} {% block page_title %}Connectors{% endblock %} {% block page_subtitle %}Cross-org bridges and federation (Layer 13){% endblock %} {% block layer_indicator %}L13 Connector{% endblock %} {% block content %}
What are Connectors? Connectors are cross-organization bridges that enable federated sharing between separate Scoped installations. Each connector defines a trust relationship with a remote organization, controlling what data flows in which direction.
{{ connectors|length }} connector{{ connectors|length|pluralize }}
{% if connectors %}
{% for conn in connectors %} {% endfor %}
Name Remote Org Direction State Created
{{ conn.name }}

{{ conn.id|truncate_id }}

{{ conn.remote_org|default:"--" }} {% if conn.direction == "PUSH" %} Push → {% elif conn.direction == "PULL" %} ← Pull {% else %} ↔ Bidirectional {% endif %} {% include "components/_state_badge.html" with state=conn.state %} {{ conn.created_at|format_dt }}
{% else %} {% include "components/_empty_state.html" with title="No connectors" message="No cross-org bridges have been configured yet. Connectors enable federated sharing between Scoped installations." %} {% endif %} {% endblock %}