copay/public/views/preferencesInformation.html

154 lines
4.8 KiB
HTML
Raw Normal View History

2015-09-12 06:44:01 -07:00
<div
class="topbar-container"
ng-include="'views/includes/topbar.html'"
ng-init="titleSection='Wallet Information'; goBackToState = 'preferencesAdvanced'">
</div>
<div class="content preferences" ng-controller="preferencesInformation as info" ng-init="info.init()">
2015-09-12 06:44:01 -07:00
<h4 class="title m0" translate>Wallet Information</h4>
<ul class="no-bullet m0 size-14">
<li class="line-b p20 oh">
2015-09-12 06:44:01 -07:00
<span translate>Wallet Name (at creation)</span>
<span class="right text-gray">
{{walletName}}
</span>
</li>
2015-11-06 10:32:10 -08:00
<li class="line-b p20 oh">
2015-09-12 06:44:01 -07:00
<span translate>Wallet Id</span>
<span class="right text-gray enable_text_select">
2015-09-12 06:44:01 -07:00
{{walletId}}
</span>
</li>
<li class="line-b p20 oh">
2015-09-12 06:44:01 -07:00
<span translate>Wallet Configuration (m-n)</span>
<span class="right text-gray">
{{M}}-{{N}}
</span>
</li>
2015-11-06 10:32:10 -08:00
<li class="line-b p20 oh">
2015-09-12 06:44:01 -07:00
<span translate>Wallet Network</span>
<span class="right text-gray">
{{network}}
</span>
</li>
<li class="line-b p20 oh">
2015-09-12 06:44:01 -07:00
<span translate>Address Type</span>
<span class="right text-gray">
{{addressType}}
</span>
</li>
<li class="line-b p20 oh">
2015-09-12 06:44:01 -07:00
<span translate>Derivation Strategy</span>
<span class="right text-gray">
{{derivationStrategy}}
</span>
</li>
2015-11-07 06:40:35 -08:00
<li class="line-b p20 oh" ng-show="index.externalSource">
<span>Hardware Wallet</span>
2015-11-07 06:40:35 -08:00
<span class="right text-gray capitalize">
{{index.externalSource}}
</span>
</li>
<li class="line-b p20 oh" ng-show="!index.externalSource && !index.canSign">
<span translate></span>
<span class="right text-gray capitalize">
No private key
</span>
</li>
<li class="line-b p20 oh" ng-show="index.account">
<span translate>Account</span> ({{derivationStrategy}})
2015-11-07 06:40:35 -08:00
<span class="right text-gray">
#{{index.account}}
</span>
</li>
2015-11-06 10:32:10 -08:00
<h4 class="title m0" translate>Copayers</h4>
<li ng-repeat="copayer in index.copayers">
<span class="size-12" ng-show="copayer.id == index.copayerId">
<i class="icon-contact size-24 m10r"></i> {{copayer.name}} ({{'Me'|translate}}) <i class="fi-check m5 right"></i>
</span>
<span class="size-12 text-gray" ng-show="copayer.id != index.copayerId">
<i class="icon-contact size-24 m10r"></i> {{copayer.name}}<i class="fi-check m5 right"></i>
</span>
</li>
2015-09-12 06:44:01 -07:00
<h4 class="title m0" translate>Extended Public Keys</h4>
2015-10-08 07:58:55 -07:00
<li ng-repeat="pk in pubKeys">
<div class="row collapse">
<div class="small-4 columns">Copayer {{$index}}</div>
<div class="small-8 columns oh text-gray">
<div class="ellipsis enable_text_select">{{pk}}</div>
<div class="size-12 text-right" ng-if="$index == 0">
({{basePath}})
</div>
2015-09-12 06:44:01 -07:00
</div>
</div>
</li>
</ul>
<ul class="no-bullet m0 size-14" ng-show="addrs">
2015-09-12 06:44:01 -07:00
<h4 class="title m0" translate>Last Wallet Addresses</h4>
2015-10-08 07:58:55 -07:00
<li ng-repeat="a in addrs" class="oh">
<div class="enable_text_select ellipsis">
2015-09-12 06:44:01 -07:00
{{a.address}}
</div>
<div class="text-gray size-12 right enable_text_select">
{{a.path}} &middot; {{a.createdOn *1000 | amDateFormat:'MMMM Do YYYY, h:mm a' }}
2015-09-12 06:44:01 -07:00
</div>
</li>
<li class="line-b p10 text-centered text-gray size-12">
<span translate>Only Main (not change) addresses are shown. The addresses on this list were not verified locally at this time.</span>
</li>
2015-10-08 07:58:55 -07:00
<li class="line-b p20" >
<button class="black round small expand" ng-style="{'background-color':index.backgroundColor}" ng-click="index.retryScan(); $root.go('walletHome'); ">
<span translate>Scan addresses for funds</span>
</button>
<button ng-show="index.isCordova" class="black round small expand"
ng-style="{'background-color':index.backgroundColor}"
ng-click="info.sendAddrs()"
ng-disabled="info.loading">
<i class="fi-mail"></i>
<span translate>Send addresses by email</span>
2015-09-12 06:44:01 -07:00
</button>
</li>
</ul>
2015-09-12 06:44:01 -07:00
<ul class="no-bullet m0 size-14" ng-show="index.balanceByAddress">
2015-09-28 12:36:35 -07:00
<div ng-if="index.balanceByAddress[0]">
<h4 class="title m0" translate>Balance By Address</h4>
<li class="line-b p20 oh" ng-repeat="a in index.balanceByAddress">
<div class="enable_text_select ellipsis">
{{a.address}}
</div>
2015-09-28 12:36:35 -07:00
<div class="text-gray text-right">
{{(a.amount/1e8).toFixed(8)}} BTC
</div>
</li>
</div>
2015-09-12 06:44:01 -07:00
</ul>
<h4></h4>
2015-09-12 06:44:01 -07:00
<div class="extra-margin-bottom"></div>
2015-09-12 06:44:01 -07:00
</div>