copay/public/views/preferences.html

82 lines
3.0 KiB
HTML
Raw Normal View History

2016-08-17 09:07:48 -07:00
<ion-view>
2016-08-16 12:47:51 -07:00
<ion-nav-bar class="bar-stable">
<ion-nav-title>Wallet Settings</ion-nav-title>
<ion-nav-buttons side="primary">
2016-08-17 09:07:48 -07:00
 <button class="button" href ui-sref="wallet.details">
2016-08-16 12:47:51 -07:00
     <i class="ion-arrow-left-c"></i> Back
   </button>
  </ion-nav-buttons>
</ion-nav-bar>
2016-08-17 09:07:48 -07:00
<ion-content class="has-header" ng-controller="preferencesController" cache-view="false" ng-init="init()">
2016-08-16 12:47:51 -07:00
<div class="list">
<div class="item item-divider">
Preferences
</div>
2016-08-16 12:47:51 -07:00
<div class="item item-icon-right" href ui-sref="preferencesAlias">
<span translate>Wallet Name</span>
<span class="item-note">
2016-08-17 09:07:48 -07:00
{{alias||walletName}}
2016-08-16 12:47:51 -07:00
</span>
<i class="icon ion-ios-arrow-right"></i>
</div>
2016-08-16 12:47:51 -07:00
<div class="item">
<span translate>Devices</span>
<span class="item-note">
1
</span>
</div>
<div class="item">
<span translate>Required number of signatures</span>
<span class="item-note">
1
</span>
2016-05-17 14:59:31 -07:00
</div>
2016-08-16 12:47:51 -07:00
<div class="item" ng-show="index.isPrivKeyExternal">
<span translate>Hardware wallet</span>
<span class="item-note">
{{externalSource}}
</span>
</div>
2016-08-16 12:47:51 -07:00
<div class="item item-icon-right" href ui-sref="preferencesColor">
2016-08-17 09:07:48 -07:00
<span ng-style="{'color': backgroundColor}">&block;</span>
2016-08-16 12:47:51 -07:00
<span translate>Wallet Color</span>
<span class="item-note">
{{index.alias||index.walletName}}
</span>
2016-08-16 12:47:51 -07:00
<i class="icon ion-ios-arrow-right"></i>
</div>
<div class="item item-icon-right" href ui-sref="preferencesEmail">
<span translate>Email Notifications</span>
<span class="item-note">
<span ng-if="!index.preferences.email" translate>Disabled</span>
<span ng-if="index.preferences.email">{{index.preferences.email}}</span>
</span>
<i class="icon ion-ios-arrow-right"></i>
</div>
<div class="item item-divider">
Security
</div>
<div class="item item-icon-right" href ui-sref="backup" ng-hide="index.isPrivKeyExternal">
<span translate>Backup</span>
<i class="icon ion-ios-arrow-right"></i>
</div>
<div ng-show="!index.noFocusedWallet && index.canSign">
<ion-toggle ng-model="encryptEnabled" toggle-class="toggle-balanced" ng-change="encryptChange()">
<span class="toggle-label" translate>Request Spending Password</span>
</ion-toggle>
</div>
<div class="item item-icon-right" href ui-sref="deleteWords" ng-show ="!deleted">
<span translate>Delete recovery phrase</span>
<i class="icon ion-ios-arrow-right"></i>
</div>
<div class="item item-divider">
Advanced
</div>
<div class="item item-icon-right" href ui-sref="preferencesAdvanced">
<span translate>Advanced</span>
<i class="icon ion-ios-arrow-right"></i>
</div>
2016-08-16 12:47:51 -07:00
</div>
</ion-content>
</ion-view>