15 lines
635 B
HTML
15 lines
635 B
HTML
<div class="wallet-item">
|
|
<i class="icon big-icon-svg circle">
|
|
<img ng-src="img/{{wallet.network == 'testnet' ? 'icon-wallet-testnet' : (wallet.coin == 'btc' ? 'icon-btc' : 'icon-bch')}}.svg" ng-class="{'wallet-background-color-default': !wallet.color}" ng-style="{'background-color': wallet.color}" class="bg"/>
|
|
</i>
|
|
<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>
|
|
|