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

Command Routing

Manage command profiles, channel bindings, business-plan outputs, and translation bridges.

Create Command Profile

{% csrf_token %}
{% for profile in profiles %}

{{ profile.name }} ({{ profile.slug }})

{% csrf_token %}

Channel Bindings

{% for binding in profile.channel_bindings.all %} {% empty %} {% endfor %}
DirectionServiceChannel
{{ binding.direction }} {{ binding.service }} {{ binding.channel_identifier }}
{% csrf_token %}
No bindings yet.
{% csrf_token %}

Actions

{% for action_row in profile.actions.all %} {% empty %} {% endfor %}
TypeEnabledPosition
{{ action_row.action_type }} {{ action_row.enabled }} {{ action_row.position }}
{% csrf_token %}
No actions.
{% csrf_token %}
{% empty %}
No command profiles configured.
{% endfor %}

Business Plan Documents

{% for doc in documents %} {% empty %} {% endfor %}
TitleStatusSourceUpdated
{{ doc.title }} {{ doc.status }} {{ doc.source_service }} · {{ doc.source_channel_identifier }} {{ doc.updated_at }} Open
No business plan documents yet.

Translation Bridges

{% csrf_token %}
{% for bridge in bridges %} {% empty %} {% endfor %}
NameABDirection
{{ bridge.name }} {{ bridge.a_service }} · {{ bridge.a_channel_identifier }} · {{ bridge.a_language }} {{ bridge.b_service }} · {{ bridge.b_channel_identifier }} · {{ bridge.b_language }} {{ bridge.direction }}
{% csrf_token %}
No translation bridges configured.

Translation Event Log

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