copay/public/views/includes/wallets.html

18 lines
744 B
HTML
Raw Normal View History

<div class="wallets" ng-show="wallets[0]">
2016-08-22 12:07:21 -07:00
<ion-slides class="slides" slider="data.slider">
<ion-slide-page ng-repeat="wallet in wallets track by $index">
2016-08-30 13:07:49 -07:00
<div class="item item-icon-left item-icon-right">
2016-08-23 05:37:16 -07:00
<i class="icon ion-briefcase size-21" ng-style="{'color':wallet.color}"></i>
{{wallet.name || wallet.id}}
<span class="item-note" ng-show="wallet.n > 1 && wallet.isComplete()">
{{wallet.m}}-of-{{wallet.n}}
</span>
<span class="badge badge-assertive" ng-show="!wallet.isComplete()" translate>
Incomplete
</span>
2016-08-30 13:07:49 -07:00
<i ng-show="wallet.needsBackup" class="icon ion-android-warning assertive"></i>
2016-08-22 12:07:21 -07:00
</div>
</ion-slide-page>
</ion-slides>
</div>