Wallet/www/views/includes/walletItem.html

12 lines
421 B
HTML
Raw Normal View History

2017-01-18 13:15:46 -03:00
<div class="wallet-item">
2017-09-20 11:53:30 -03:00
<i class="icon big-icon-svg circle" ng-include="'views/includes/walletIcon.html'"></i>
2017-01-18 13:15:46 -03:00
<div class="name">
{{wallet.name || wallet.id}}
<span class="size-12 text-light" ng-show="wallet.n > 1">
{{wallet.m}}-of-{{wallet.n}}
</span>
<span class=" size-12 text-light assertive" ng-show="!wallet.isComplete()">
{{'Incomplete' | translate}}
</span>
</div>
</div>