{% extends "base.html" %} {% block content %}

Translation Settings

Configure translation bridges, routing direction, and inspect sync events.

Translation Bridges

{% csrf_token %}
{% for bridge in bridges %} {% empty %} {% endfor %}
Configured translation bridges
NameABDirectionActions
{{ bridge.name }} {{ bridge.a_service }} · {{ bridge.a_channel_identifier }} · {{ bridge.a_language }} {{ bridge.b_service }} · {{ bridge.b_channel_identifier }} · {{ bridge.b_language }} {% if bridge.direction == "a_to_b" %}A to B {% elif bridge.direction == "b_to_a" %}B to A {% else %}Bidirectional {% endif %}
{% csrf_token %}
No translation bridges configured.

Translation Event Log

{% for event in events %} {% empty %} {% endfor %}
Recent translation sync events
BridgeStatusTargetErrorAt
{{ event.bridge.name }} {{ event.status }} {{ event.target_service }} · {{ event.target_channel }} {{ event.error|default:"-" }} {{ event.created_at }}
No events yet.
{% endblock %}