<div class="row"><div class="col-lg-4 col-md-4 col-sm-6"><div class="row"><table class="table table-bordered"><tbody><thead><tr><th align="center">TRANSACTIONS</th><th align="center">EXPENSES</th><th align="center">TOTAL</th></tr></thead><tr><td align="center">{{ station_daily.amount | number_format }}</td><td><ol>{% for expense in expenses %}<li>{{ expense.expense_name }} - <b>{{ expense.amount | number_format }}</b></li>{% endfor %}</ol>TOTAL:- <b>{{ station_daily.expenses | number_format }}</b></td><td align="center">{{ (station_daily.amount - station_daily.expenses) | number_format}}</td></tr></tbody></table></div></div><div class="col-lg-4 col-md-4 col-sm-6"><br><a href="{{ path('daily_station_view_account', {'id': station_daily.id}) }}" class="btn btn-warning">view detail</a></div></div>