25 lines
759 B
HTML
25 lines
759 B
HTML
{{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}}
|