{% extends "web/base.html" %} {% block title %}Orders | tcx{% endblock %} {% block page_label %}Orders{% endblock %} {% block content %}
Order tickets{{ ticket_count }}
Ready{{ ready_count }}
Needs review{{ review_count }}
Order Ticket

Prepare draft

Draft only after decision support Use a planner flow first when the idea has not passed evidence, portfolio fit, and risk review. Plan decision support
{% csrf_token %}
Tickets

Recent order tickets

{% for ticket in order_tickets %}
{{ ticket.ticket_id }} {{ ticket.current_state }} · {{ ticket.side }} {{ ticket.quantity }} {{ ticket.symbol }} @ {{ ticket.limit_price }} {{ ticket.currency }} {{ ticket.created_by }} · {{ ticket.created_at|date:"Y-m-d H:i" }}
{% csrf_token %}
{% if ticket.check_runs.all %} {% for check in ticket.check_runs.all %} {{ check.check_type }}={{ check.decision }}{% if not forloop.last %} · {% endif %} {% endfor %} {% endif %}
{% empty %}

No order tickets are stored yet.

{% endfor %}
{% endblock %}