Wallet/public/views/preferencesHistory.html

25 lines
1 KiB
HTML
Raw Normal View History

2016-08-17 13:07:48 -03:00
<ion-view>
2016-08-16 16:47:51 -03:00
<ion-nav-bar class="bar-stable">
<ion-nav-title>Transaction History</ion-nav-title>
<ion-nav-buttons side="primary">
2016-08-17 15:53:17 -03:00
 <button class="button" href ui-sref="wallet.preferencesAdvanced">
2016-08-16 16:47:51 -03:00
     <i class="ion-arrow-left-c"></i> Back
   </button>
  </ion-nav-buttons>
</ion-nav-bar>
2016-08-17 13:07:48 -03:00
<ion-content class="has-header" ng-controller="preferencesHistory" cache-view="false" ng-init="index.updatingTxHistory ? null : csvHistory()">
2016-08-16 16:47:51 -03:00
<div class="item item-divider"></div>
<div class="item" ng-show="csvReady && !index.isCordova" ng-csv="csvContent" csv-header="csvHeader" filename="Copay-{{index.alias || index.walletName}}.csv">
<span translate>Export to file</span>
</div>
<div class="item" ng-show="!csvReady && !index.isCordova">
2016-06-14 18:17:52 -03:00
<span translate>Export to file</span>
2016-08-16 16:47:51 -03:00
<span class="item-note" translate>
preparing...
</span>
</div>
<div class="item" ng-click="clearTransactionHistory()">
<span translate>Clear cache</span>
</div>
</ion-content>
</ion-view>