stocks.html 280 Bytes
{% extends "template.html" %}

{% block content %}

<table id="stocks" class="table table-hover table-striped">
    {% for stock in stocks_array %}
    <tr>
        <td>{{ stock.name }}</td>
        <td>{{ stock.balance }}</td>
    </tr>
    {% endfor %}
</table>

{% endblock %}