insight-ui-zcash/public/views/transaction/list.html

10 lines
443 B
HTML
Raw Normal View History

2014-01-23 10:00:29 -08:00
<div class="alert alert-warning" data-ng-show="!txs[0].txid && !loading">There are not transactions</div>
<div class="block-tx" data-ng-show="txs && txs[0].txid" data-ng-repeat="tx in txs">
2014-01-20 12:39:27 -08:00
<div data-ng-include src="'/views/transaction/tx.html'"></div>
</div>
<div class="progress progress-striped active" data-ng-show="loading">
2014-01-23 05:57:34 -08:00
<div class="progress-bar progress-bar-info" style="width: 100%">
2014-01-21 11:12:58 -08:00
<span>Loading...</span>
2014-01-21 07:55:38 -08:00
</div>
</div>