Browse Source

added alert if there are not transactions yet

generic-ui
Gustavo Cortez 11 years ago
parent
commit
6e46d85124
  1. 3
      public/views/transaction/list.html

3
public/views/transaction/list.html

@ -1,5 +1,6 @@
<div data-ng-show="!txs || txs.lenght">Loading...</div>
<div class="block-tx" data-ng-repeat="tx in txs">
<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 class="line-bot">
<a href="/#!/tx/{{tx.txid}}">{{tx.txid}}</a>
<span class="pull-right">{{tx.time * 1000 | date:'medium'}}</span>

Loading…
Cancel
Save