Wallet/public/views/preferencesHistory.html

21 lines
748 B
HTML
Raw Normal View History

<div
class="topbar-container"
ng-include="'views/includes/topbar.html'"
ng-init="titleSection='Transaction history'; goBackToState = 'preferencesAdvanced'">
</div>
<div class="content preferences" ng-controller="preferencesHistory as history">
<h4></h4>
2015-12-04 11:20:22 -03:00
<ul class="no-bullet m0">
2015-12-11 13:44:55 -03:00
<li>
2016-02-16 12:33:39 -05:00
<div ng-if="!index.isCordova" ng-init="index.csvHistory()">
<a ng-style="{'color':index.backgroundColor}" ng-csv="index.csvContent" csv-header="index.csvHeader" filename="{{ index.csvFilename }}">
2015-12-11 13:44:55 -03:00
<span translate>Export to file</span>
</a>
</div>
2015-12-04 11:20:22 -03:00
</li>
2015-12-04 13:30:51 -03:00
<li ng-style="{'color':index.backgroundColor}" ng-click="history.clearTransactionHistory();" translate>
Clear cache
2015-12-04 11:20:22 -03:00
</li>
</ul>
</div>