copay/www/views/preferencesHistory.html

33 lines
1.2 KiB
HTML
Raw Normal View History

<ion-view class="settings">
<ion-nav-bar class="bar-royal">
<ion-nav-title>{{'Transaction History' | translate}}</ion-nav-title>
2016-08-29 12:48:15 -07:00
<ion-nav-back-button>
</ion-nav-back-button>
2016-08-16 12:47:51 -07:00
</ion-nav-bar>
<ion-content>
<div ng-include="'views/includes/walletItem.html'"></div>
2017-01-18 08:15:46 -08:00
2016-12-05 05:40:22 -08:00
<a class="item ng-hide" href ng-show="csvReady && !isCordova" ng-csv="csvContent" csv-header="csvHeader" filename="{{appName}}-{{wallet.name}}.csv">
2016-08-16 12:47:51 -07:00
<span translate>Export to file</span>
</a>
<a class="item ng-hide" href ng-show="!csvReady && !isCordova">
2016-06-14 14:17:52 -07:00
<span translate>Export to file</span>
<span class="item-note ng-hide" ng-show="!err" translate>
2016-08-16 12:47:51 -07:00
preparing...
</span>
<span class="item-note ng-hide" ng-show="err">
{{err | translate}}
</span>
</a>
2017-02-22 10:14:50 -08:00
<div ng-show="!isCordova" class="item item-divider"></div>
<a class="item" ng-click="clearTransactionHistory()">
<span translate>Clear cache</span>
</a>
<div class="settings-explanation">
<div class="settings-description" translate>
The transaction history and every new incoming transaction are cached in the app. This feature clean this up and synchronizes again from the server
</div>
</div>
2016-08-16 12:47:51 -07:00
</ion-content>
</ion-view>