Wallet/www/views/activity.html

30 lines
941 B
HTML
Raw Normal View History

<ion-view show-tabs>
2016-08-31 15:54:53 -04:00
<ion-nav-bar class="bar-royal">
<ion-nav-title>
{{'Recent Transactions'|translate}}
</ion-nav-title>
2016-09-21 12:05:30 -03:00
<ion-nav-back-button>
</ion-nav-back-button>
2016-08-24 17:54:01 -03:00
</ion-nav-bar>
<ion-content class="padding">
2016-08-24 17:54:01 -03:00
2017-02-10 12:18:35 -03:00
<div ng-if="fetchingNotifications" class="updating">
2016-08-25 16:23:23 -03:00
<div class="text-center">
2017-01-18 11:00:51 -03:00
<ion-spinner class="spinner-dark" icon="crescent"></ion-spinner>
<div translate>Updating... Please stand by</div>
2016-08-24 17:54:01 -03:00
</div>
</div>
<div ng-if="!fetchingNotifications">
2016-08-25 16:23:23 -03:00
<div class="list card">
2016-09-21 11:38:38 -03:00
<div class="item" ng-repeat="notification in notifications" ng-click="openNotificationModal(notification)">
2016-08-25 16:23:23 -03:00
<span ng-include="'views/includes/walletActivity.html'"></span>
</div>
2016-08-24 17:54:01 -03:00
2016-08-25 16:23:23 -03:00
<div class="item" ng-show="!notifications[0]">
<span translate>No recent transactions</span>
2016-08-25 16:23:23 -03:00
</div>
2016-08-24 17:54:01 -03:00
</div>
</div>
</ion-content>
</ion-view>