Wallet/public/views/preferencesInformation.html

106 lines
3.3 KiB
HTML
Raw Normal View History

2015-09-12 10:44:01 -03: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">
2015-09-12 10:44:01 -03:00
<h4 class="title m0" translate>Wallet Information</h4>
<ul class="no-bullet m0 size-14">
<li class="line-b p20">
<span translate>Wallet Name (at creation)</span>
<span class="right text-gray">
{{walletName}}
</span>
</li>
<li class="line-b p20">
<span translate>Wallet Id</span>
<span class="right text-gray">
{{walletId}}
</span>
</li>
<li class="line-b p20">
<span translate>Wallet Configuration (m-n)</span>
<span class="right text-gray">
{{M}}-{{N}}
</span>
</li>
<li class="line-b p20">
<span translate>Wallet Network</span>
<span class="right text-gray">
{{network}}
</span>
</li>
<li class="line-b p20">
<span translate>Address Type</span>
<span class="right text-gray">
{{addressType}}
</span>
</li>
<li class="line-b p20">
<span translate>Derivation Strategy</span>
<span class="right text-gray">
{{derivationStrategy}}
</span>
</li>
<h4 class="title m0" translate>Extended Public Keys</h4>
<li class="line-b p10" ng-repeat="pk in pubKeys">
<div class="row">
2015-09-17 10:53:27 -03:00
<div class="small-3 columns">Copayer {{$index}}</div>
2015-09-12 10:44:01 -03:00
<div class="small-9 columns oh enable_text_select text-gray" style="text-overflow:ellipsis">
{{pk}}
</div>
</div>
</li>
</ul>
<ul class="no-bullet m0 size-14" ng-show="addrs">
2015-09-12 10:44:01 -03:00
<h4 class="title m0" translate>Last Wallet Addresses</h4>
<li class="line-b p20" ng-repeat="a in addrs">
<div class="enable_text_select" style="text-overflow:ellipsis">
{{a.address}}
</div>
<div class="enable_text_select text-gray size-12" style="text-overflow:ellipsis">
<span class="right">
{{a.path}} &middot; {{a.createdOn *1000 | amDateFormat:'MMMM Do YYYY, h:mm a' }}
</span>
</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>
<li class="line-b p20" ng-hide="!index.isCordova">
<button class="black round small expand" ng-style="{'background-color':index.backgroundColor}" ng-click="info.sendAddrs()"><i class="fi-mail"></i>
<span translate>Send all by email</span>
</button>
</li>
</ul>
2015-09-12 10:44:01 -03:00
<ul class="no-bullet m0 size-14" ng-show="index.balanceByAddress">
2015-09-28 16:36:35 -03:00
<div ng-if="index.balanceByAddress[0]">
<h4 class="title m0" translate>Balance By Address</h4>
<li class="line-b p20 enable_text_select" ng-repeat="a in index.balanceByAddress">
{{a.address}}
<div class="text-gray text-right">
{{(a.amount/1e8).toFixed(8)}} BTC
</div>
</li>
</div>
2015-09-12 10:44:01 -03:00
</ul>
<div class="extra-margin-bottom"></div>
2015-09-12 10:44:01 -03:00
</div>