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

{% block content %}

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

{% else  %}
    Data tidak tersedia
{% endif %}

{% endblock %}