{% extends "web/base.html" %} {% block title %}Orders | tcx{% endblock %} {% block page_label %}Orders{% endblock %} {% block content %}
Review only

Order intents, approvals, and experimental execution results.

This web surface reviews lifecycle state. Paper/stub execution is experimental, and live broker execution is excluded.

Open order tables
Order intents{{ order_count }}
Approval receipts{{ approval_count }}
Experimental executions{{ execution_count }}
Drafts

Recent order intents

{% for order in order_intents %}
{{ order.intent_id }} {{ order.side }} {{ order.quantity }} {{ order.symbol }} via {{ order.broker }} {{ order.created_by }} · {{ order.created_at|date:"Y-m-d H:i" }}
{% empty %}

No order intents are stored yet.

{% endfor %}
Experimental execution ledger

Recent results

{% for execution in execution_results %}
{{ execution.order_intent_id }} {{ execution.status }} via {{ execution.adapter }} {{ execution.created_at|date:"Y-m-d H:i" }}
{% empty %}

No execution results are stored yet.

{% endfor %}
{% endblock %}