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-08-24 17:54:01 -03:00
|
|
|
<ion-nav-title>Recent Activity</ion-nav-title>
|
2016-08-25 16:23:23 -03:00
|
|
|
<ion-nav-buttons side="primary">
|
2016-09-01 12:16:28 -04:00
|
|
|
<button class="button back-button" ui-sref="tabs.home">
|
|
|
|
|
<i class="icon ion-ios-arrow-thin-left"></i>
|
2016-08-25 16:23:23 -03:00
|
|
|
</button>
|
|
|
|
|
</ion-nav-buttons>
|
2016-08-24 17:54:01 -03:00
|
|
|
</ion-nav-bar>
|
|
|
|
|
<ion-content class="padding" ng-controller="activityController" ng-init="init()">
|
|
|
|
|
|
|
|
|
|
<div ng-if="fetchingNotifications" class="updatingHistory">
|
2016-08-25 16:23:23 -03:00
|
|
|
<div class="text-center">
|
|
|
|
|
<ion-spinner class="spinner-dark" icon="lines"></ion-spinner>
|
|
|
|
|
<div translate>Updating activity. 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-20 16:21:05 -03:00
|
|
|
<div class="item" ng-repeat="notification in notifications" ng-click="openTxModal(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 activity</span>
|
|
|
|
|
</div>
|
2016-08-24 17:54:01 -03:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</ion-content>
|
|
|
|
|
</ion-view>
|