copay/www/views/activity.html

31 lines
938 B
HTML
Raw Normal View History

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