Files
aitrade/pkg/app/web/templates/trades-content.html
T
kaedwen ea141eb012
Build and Push Docker Image / build-and-push (push) Failing after 1m41s
initial
2026-07-02 20:09:44 +02:00

26 lines
689 B
HTML

{{define "trades-content"}}
<div id="tab-trades" class="tab-content">
<h2>All Trades</h2>
<table>
<thead>
<tr>
<th>ID</th>
<th>Symbol</th>
<th>Action</th>
<th>Quantity</th>
<th>Status</th>
<th>Price</th>
<th>P&L</th>
<th>Confidence</th>
<th>Reasoning</th>
<th>Created</th>
<th>Actions</th>
</tr>
</thead>
<tbody id="trades-body">
<tr><td colspan="11" style="text-align: center;">Loading...</td></tr>
</tbody>
</table>
</div>
{{end}}