copay/public/views/activity.html

37 lines
1.2 KiB
HTML
Raw Normal View History

2016-08-24 13:54:01 -07:00
<ion-view>
<ion-nav-bar class="bar-stable">
<ion-nav-title>Recent Activity</ion-nav-title>
2016-08-25 12:23:23 -07:00
<ion-nav-buttons side="primary">
<button class="button no-border" ui-sref="tabs.home">
<span translate>Close</span>
</button>
</ion-nav-buttons>
2016-08-24 13:54:01 -07:00
</ion-nav-bar>
<ion-content class="padding" ng-controller="activityController" ng-init="init()">
<div ng-if="fetchingNotifications" class="updatingHistory">
2016-08-25 12:23:23 -07: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 13:54:01 -07:00
</div>
</div>
<div ng-if="!fetchingNotifications">
2016-08-25 12:23:23 -07:00
<div class="list card">
<div class="item item-icon-left" ng-repeat="x in notifications" ng-click="x.action()">
<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
<a class="item text-center" ui-sref="activity" ng-show="notificationsMore">
<span translate>More</span> ({{notificationsMore}})
</a>
<div class="item" ng-show="!notifications[0]">
<span translate>No recent activity</span>
</div>
2016-08-24 13:54:01 -07:00
</div>
</div>
</ion-content>
</ion-view>