mirror of https://github.com/me50/kukemuna.git
41 lines
1.2 KiB
HTML
41 lines
1.2 KiB
HTML
{% extends "layout.html" %}
|
|
|
|
{% block title %}
|
|
Home
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-start">Symbol</th>
|
|
<th class="text-end">Shares</th>
|
|
<th class="text-end">Price</th>
|
|
<th class="text-end">TOTAL</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{% for stock in stocks%}
|
|
<tr>
|
|
<td class="text-start">{{ stock.symbol }}</td>
|
|
<td class="text-end">{{ stock.shares }}</td>
|
|
<td class="text-end">{{ stock.price | usd }}</td>
|
|
<td class="text-end">{{ stock.total | usd }}</td>
|
|
</tr>
|
|
{% endfor%}
|
|
</tbody>
|
|
|
|
<tfoot>
|
|
<tr>
|
|
<td class="border-0 fw-bold text-end" colspan="3">Cash</td>
|
|
<td class="border-0 text-end" colspan="3">{{ cash | usd }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="border-0 fw-bold text-end" colspan="3">TOTAL</td>
|
|
<td class="border-0 fw- bold text-end" colspan="3">{{ total | usd }}</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
{% endblock %}
|