2017-06-28 16:28:17 -03:00
< ion-view class = "settings" show-tabs >
2016-09-01 12:36:59 -04:00
< ion-nav-bar class = "bar-royal" >
2016-09-22 11:55:23 -03:00
< ion-nav-title >
2016-10-12 20:10:22 -04:00
{{'Wallet Settings'|translate}}
2016-09-22 11:55:23 -03:00
< / ion-nav-title >
2016-08-29 16:48:15 -03:00
< ion-nav-back-button >
< / ion-nav-back-button >
2016-08-16 16:47:51 -03:00
< / ion-nav-bar >
2016-09-22 11:55:23 -03:00
< ion-content >
2016-10-12 22:01:48 -04:00
< div class = "list settings-list" >
2017-01-18 13:15:46 -03:00
2017-02-06 12:59:16 -03:00
< div ng-include = "'views/includes/walletItem.html'" > < / div >
2017-01-18 13:15:46 -03:00
2016-09-06 17:53:20 -04:00
< a class = "item item-icon-right" ui-sref = "tabs.preferences.preferencesAlias" >
2016-09-05 17:36:11 -03:00
< span translate > Name< / span >
2017-08-03 10:38:46 -03:00
< span class = "item-note ellipsis" >
2016-09-05 17:36:11 -03:00
{{wallet.name}}
2016-08-16 16:47:51 -03:00
< / span >
2016-10-03 19:38:57 -04:00
< i class = "icon bp-arrow-right" > < / i >
2016-09-06 17:53:20 -04:00
< / a >
2017-06-08 12:29:00 -03:00
< a ng-if = "!isWindowsPhoneApp" class = "item item-icon-right" ui-sref = "tabs.preferences.preferencesColor" >
2016-09-05 17:36:11 -03:00
< span translate > Color< / span >
2016-10-03 19:38:57 -04:00
< i class = "icon bp-arrow-right" > < / i >
2016-09-06 17:53:20 -04:00
< / a >
2016-12-02 17:33:18 -03:00
< ion-toggle ng-model = "hiddenBalance.value" toggle-class = "toggle-balanced" ng-change = "hiddenBalanceChange()" >
< span class = "toggle-label" translate > Hide Balance< / span >
< / ion-toggle >
2017-04-17 10:55:16 -04:00
< div class = "item item-divider" ng-hide = "wallet.isPrivKeyExternal() || !wallet.canSign()" translate >
2016-08-16 16:47:51 -03:00
Security
< / div >
2016-09-26 16:11:45 -03:00
< a class = "item item-icon-right" ui-sref = "tabs.preferences.backupWarning({from: 'tabs.preferences'})" ng-hide = "wallet.isPrivKeyExternal()" >
2016-08-16 16:47:51 -03:00
< span translate > Backup< / span >
2017-02-06 10:09:13 -03:00
< span class = "right text-light assertive" ng-show = "wallet.needsBackup" >
{{'Backup needed' | translate}}
< / span >
2016-10-03 19:38:57 -04:00
< i class = "icon bp-arrow-right" > < / i >
2016-09-06 17:53:20 -04:00
< / a >
2016-08-29 11:58:23 -03:00
< div ng-show = "wallet.canSign()" >
2017-02-06 10:00:13 -03:00
< ion-toggle ng-model = "encryptEnabled.value" toggle-class = "toggle-balanced" ng-change = "encryptChange()" ng-disabled = "wallet.needsBackup" >
2017-03-13 15:59:09 -03:00
< span ng-class = "{'disabled': wallet.needsBackup}" class = "toggle-label" translate > Request Spending Password< / span >
2016-08-16 16:47:51 -03:00
< / ion-toggle >
2017-03-16 09:24:43 -03:00
< div class = "comment" >
< span translate >
If enabled, all sensitive information (private key and recovery phrase) and actions (spending and exporting) associated with this wallet will be protected.
< / span >
2017-09-04 15:48:11 -03:00
< a ng-click = "openWikiSpendingPassword()" translate > Learn more< / a >
2017-08-31 18:14:49 -03:00
< div class = "text-light assertive" ng-show = "wallet.needsBackup" translate >
2017-03-16 09:24:43 -03:00
Complete the backup process to use this option
2017-08-31 18:14:49 -03:00
< / div >
2017-02-06 10:00:13 -03:00
< / div >
2016-08-16 16:47:51 -03:00
< / div >
2016-08-29 11:58:23 -03:00
< div ng-show = "wallet.canSign() && touchIdAvailable" >
2016-09-23 12:42:33 -03:00
< ion-toggle ng-model = "touchIdEnabled.value" toggle-class = "toggle-balanced" ng-change = "touchIdChange()" >
2016-08-29 11:58:23 -03:00
< span class = "toggle-label" translate > Request Fingerprint< / span >
< / ion-toggle >
< / div >
2016-09-05 17:36:11 -03:00
< div class = "item item-divider" > < / div >
2016-09-06 17:53:20 -04:00
< a class = "item item-icon-right" ui-sref = "tabs.preferences.preferencesAdvanced" >
2016-10-12 22:01:48 -04:00
< span translate > More Options< / span >
2016-10-03 19:38:57 -04:00
< i class = "icon bp-arrow-right" > < / i >
2016-09-06 17:53:20 -04:00
< / a >
2016-08-16 16:47:51 -03:00
< / div >
< / ion-content >
< / ion-view >