Files
aitrade/pkg/app/web/templates/whitelist.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

25 lines
759 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{{define "whitelist"}}
<div id="tab-whitelist" class="tab-content">
<div style="display: flex; justify-content: space-between; align-items: center;">
<h2 style="margin: 0;">Trading Whitelist</h2>
<button class="add-btn" onclick="showAddModal()"> Add Symbol</button>
</div>
<table>
<thead>
<tr>
<th>Symbol</th>
<th>Name</th>
<th>WKN</th>
<th>ISIN</th>
<th>Status</th>
<th>Notes</th>
<th>Actions</th>
</tr>
</thead>
<tbody id="whitelist-body">
<tr><td colspan="7" style="text-align: center;">Loading...</td></tr>
</tbody>
</table>
</div>
{{end}}