flocore-node/public/views/transaction/list.html
Matias Alejo Garcia c665fe6eb1 resolve conflics
2014-01-20 23:54:59 -03:00

6 lines
319 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 fader" data-ng-show="txs && txs[0].txid" data-ng-repeat="tx in txs">
<div data-ng-include src="'/views/transaction/tx.html'"></div>
</div>