Wallet/public/views/includes/wallets.html

16 lines
640 B
HTML
Raw Normal View History

<div class="wallets" ng-show="wallets[0]">
2016-08-22 16:07:21 -03:00
<ion-slides class="slides" slider="data.slider">
<ion-slide-page ng-repeat="wallet in wallets track by $index">
2016-08-23 12:57:58 -03:00
<div class="item item-icon-left">
2016-08-23 09:37:16 -03: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-22 16:07:21 -03:00
</div>
</ion-slide-page>
</ion-slides>
</div>