97 lines
3.3 KiB
HTML
97 lines
3.3 KiB
HTML
|
|
<ion-view>
|
|
<ion-nav-bar class="bar-stable">
|
|
<ion-nav-title>Home</ion-nav-title>
|
|
</ion-nav-bar>
|
|
<ion-content class="padding home" ng-controller="tabHomeController" cache-view="false">
|
|
|
|
<h2 class="title m0" ng-if="txps[0]" translate>Payment Proposals</h2>
|
|
<div class="list card" ng-if="txps[0]">
|
|
<ul>
|
|
<li ng-repeat="tx in txps" class="item item-icon-left"
|
|
ng-click="openTxpModal(tx)">
|
|
<i class="icon ion-ios-circle-filled" ng-show="tx.pendingForUs" ng-style="{'color':tx.wallet.color}"></i>
|
|
<span ng-show="!tx.merchant">
|
|
<span ng-show="addressbook[tx.toAddress] && !tx.message">
|
|
{{addressbook[tx.toAddress]}}
|
|
</span>
|
|
<span class="ellipsis" ng-show="!addressbook[tx.toAddress] && tx.message">
|
|
{{tx.message}}
|
|
</span>
|
|
<span ng-show="!addressbook[tx.toAddress] && !tx.message" translate>
|
|
Sending
|
|
</span>
|
|
</span>
|
|
<span ng-show="tx.merchant">
|
|
<span ng-show="tx.merchant.pr.ca"><i class="fi-lock"></i> {{tx.merchant.domain}}</span>
|
|
<span ng-show="!tx.merchant.pr.ca"><i class="fi-unlock"></i> {{tx.merchant.domain}}</span>
|
|
</span>
|
|
<span >
|
|
<span>
|
|
- {{tx.amountStr}}
|
|
</span>
|
|
<div class="item item-divider">
|
|
{{tx.wallet.name}} · <time>{{ (tx.ts || tx.createdOn ) * 1000 | amTimeAgo}}</time>
|
|
</div>
|
|
</span>
|
|
</li>
|
|
</ul>
|
|
|
|
<div ng-show="lockedBalanceSat">
|
|
<span translate>Total Locked Balance</span>:
|
|
<b>{{lockedBalanceStr}} </b>
|
|
<span> {{lockedBalanceAlternative}} {{alternativeIsoCode}} </span>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<h2>Wallets
|
|
<a href="#/add"><i class="ion-ios-plus-outline right"></i></a>
|
|
</h2>
|
|
<div class="list card">
|
|
<ul class="pr">
|
|
|
|
<li ng-show="wallets[0]"
|
|
ng-repeat="item in wallets track by $index" class="item item-icon-left"
|
|
menu-toggle href ui-sref="wallet.details({'walletId': item.id})">
|
|
<i class="icon ion-briefcase size-21" ng-style="{'color':item.color}"></i>
|
|
{{item.name || item.id}}
|
|
<span ng-show="item.n > 1" class="text-gray">
|
|
{{item.m}}-of-{{item.n}}
|
|
</span>
|
|
|
|
<span class="badge badge-assertive" ng-show="!item.isComplete()" translate>
|
|
Incomplete
|
|
</span>
|
|
<span class="item-note" ng-show="item.isComplete()">
|
|
{{item.status.availableBalanceStr}}
|
|
</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
|
|
<h2>Next steps </h2>
|
|
<div class="list card">
|
|
<ul class="pr">
|
|
<li menu-toggle href ui-sref="bitpayCard" ng-show="bitpayCardEnabled" class="item item-icon-left">
|
|
<i class="icon ion-card"></i>
|
|
BitPay Card
|
|
</li>
|
|
<li ng-show="!index.isWindowsPhoneApp && (index.glideraEnabled || index.coinbaseEnabled)" menu-toggle href ui-sref="buyandsell" class="item item-icon-left">
|
|
<i class="icon ion-cash"></i>
|
|
Buy and Sell
|
|
</li>
|
|
<li menu-toggle href ui-sref="amazon" class="item item-icon-left">
|
|
<i class="icon ion-ios-cart"></i>
|
|
Gift Cards
|
|
<span class="item-note">
|
|
bla bla
|
|
</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
</ion-content>
|
|
</ion-view>
|