cs50/templates/history.html

31 lines
813 B
HTML
Raw Normal View History

{% extends "layout.html" %}
{% block title %}
History
{% endblock %}
{% block main %}
<table class="table">
<thead>
<tr>
<th class="text-start">Symbol</th>
<th class="text-end">Shares</th>
<th class="text-end">Price</th>
<th class="text-end">Transacted</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 }}</td>
<td class="text-end">{{ stock.date }}</td>
</tr>
{% endfor%}
</tbody>
</table>
{% endblock %}