flosight-api/public/views/transaction/list.html
Matias Alejo Garcia 8e7887fa40 isolate TX view
2014-01-20 17:39:27 -03:00

6 lines
313 B
HTML

<div data-ng-show="!txs || txs.lenght">Loading...</div>
<div class="alert alert-warning" data-ng-show="txs && !txs[0].txid">There are not transactions</div>
<div class="block-tx" data-ng-show="txs && txs[0].txid" data-ng-repeat="tx in txs">
<div data-ng-include src="'/views/transaction/tx.html'"></div>
</div>