2016-08-24 17:54:01 -03:00
|
|
|
<ion-view>
|
2016-08-31 15:54:53 -04:00
|
|
|
<ion-nav-bar class="bar-royal">
|
2016-09-22 01:47:39 -03:00
|
|
|
<ion-nav-title>
|
2016-11-10 13:47:57 -03:00
|
|
|
{{'Recent Transactions'|translate}}
|
2016-09-22 01:47:39 -03:00
|
|
|
</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>
|
2016-09-22 01:47:39 -03:00
|
|
|
<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>
|
2016-11-10 13:47:57 -03:00
|
|
|
<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]">
|
2016-11-10 13:47:57 -03:00
|
|
|
<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>
|