Command Routing
Manage command profiles, channel bindings, business-plan outputs, and translation bridges.
Create Command Profile
{% for profile in profiles %}
{{ profile.name }} ({{ profile.slug }})
Channel Bindings
| Direction | Service | Channel | |
{% for binding in profile.channel_bindings.all %}
| {{ binding.direction }} |
{{ binding.service }} |
{{ binding.channel_identifier }} |
|
{% empty %}
| No bindings yet. |
{% endfor %}
{% empty %}
No command profiles configured.
{% endfor %}
Business Plan Documents
| Title | Status | Source | Updated | |
{% for doc in documents %}
| {{ doc.title }} |
{{ doc.status }} |
{{ doc.source_service }} · {{ doc.source_channel_identifier }} |
{{ doc.updated_at }} |
Open |
{% empty %}
| No business plan documents yet. |
{% endfor %}
Translation Bridges
| Name | A | B | Direction | |
{% for bridge in bridges %}
| {{ bridge.name }} |
{{ bridge.a_service }} · {{ bridge.a_channel_identifier }} · {{ bridge.a_language }} |
{{ bridge.b_service }} · {{ bridge.b_channel_identifier }} · {{ bridge.b_language }} |
{{ bridge.direction }} |
|
{% empty %}
| No translation bridges configured. |
{% endfor %}
Translation Event Log
| Bridge | Status | Target | Error | At |
{% for event in events %}
| {{ event.bridge.name }} |
{{ event.status }} |
{{ event.target_service }} · {{ event.target_channel }} |
{{ event.error|default:"-" }} |
{{ event.created_at }} |
{% empty %}
| No events yet. |
{% endfor %}