Commit 59c4cc95dc887664b860b6c761f2189eca0e4ceb
1 parent
d05bdbd3f4
Exists in
master
Align right on balance
Showing 1 changed file with 1 additions and 1 deletions Inline Diff
lib/modem-dashboard/views/stocks.html
1 | {% extends "template.html" %} | 1 | {% extends "template.html" %} |
2 | 2 | ||
3 | {% block content %} | 3 | {% block content %} |
4 | 4 | ||
5 | {% if stocks_array %} | 5 | {% if stocks_array %} |
6 | <table id="stocks" class="table table-hover table-striped"> | 6 | <table id="stocks" class="table table-hover table-striped"> |
7 | {% for stock in stocks_array %} | 7 | {% for stock in stocks_array %} |
8 | <tr> | 8 | <tr> |
9 | <td>{{ stock.name }}</td> | 9 | <td>{{ stock.name }}</td> |
10 | <td>{{ stock.balance }}</td> | 10 | <td class="text-right">{{ stock.balance }}</td> |
11 | </tr> | 11 | </tr> |
12 | {% endfor %} | 12 | {% endfor %} |
13 | </table> | 13 | </table> |
14 | 14 | ||
15 | {% else %} | 15 | {% else %} |
16 | Data tidak tersedia | 16 | Data tidak tersedia |
17 | {% endif %} | 17 | {% endif %} |
18 | 18 | ||
19 | {% endblock %} | 19 | {% endblock %} |
20 | 20 |