copay/public/views/includes/walletActivity.html

66 lines
2.0 KiB
HTML
Raw Normal View History

2016-08-30 16:00:17 -07:00
<span class="wallet-activity">
2016-09-20 08:02:45 -07:00
<div ng-if="notification.type == 'NewCopayer' && notification.wallet.n>1" translate>
Copayer joined
2016-08-31 16:10:13 -07:00
</div>
2016-09-20 08:02:45 -07:00
<div ng-if="notification.type == 'NewCopayer' && notification.wallet.n==1" translate>
2016-08-31 16:10:13 -07:00
Wallet created
</div>
2016-08-31 11:23:44 -07:00
2016-09-20 08:02:45 -07:00
<div ng-if="notification.type == 'NewOutgoingTx'">
2016-09-01 06:12:06 -07:00
<span translate>Payment Sent </span>
2016-08-31 11:23:44 -07:00
<div class="wallet-activity-amount">
2016-09-20 08:02:45 -07:00
{{notification.amountStr}}
2016-08-31 11:23:44 -07:00
</div>
</div>
2016-09-20 08:02:45 -07:00
<div ng-if="notification.type == 'NewIncomingTx'">
2016-09-01 06:12:06 -07:00
<span translate>Payment Received</span>
2016-08-30 16:00:17 -07:00
<div class="wallet-activity-amount">
2016-09-20 08:02:45 -07:00
{{notification.amountStr}}
2016-08-30 16:00:17 -07:00
</div>
</div>
2016-09-20 08:02:45 -07:00
<div ng-if="notification.type == 'TxProposalRemoved'">
<span translate>Proposal Deleted</span>:
<b>{{notification.message}}</b>
2016-09-01 12:56:35 -07:00
<div class="wallet-activity-amount">
2016-09-20 08:02:45 -07:00
{{notification.amountStr}}:
2016-09-01 12:56:35 -07:00
</div>
2016-08-30 16:00:17 -07:00
</div>
2016-09-20 08:02:45 -07:00
<div ng-if="notification.type == 'TxProposalRejectedBy'">
2016-09-01 12:56:35 -07:00
<span translate>Proposal Rejected</span>:
2016-09-20 08:02:45 -07:00
<b>{{notification.message}}</b>
2016-09-01 12:56:35 -07:00
<div class="wallet-activity-amount">
2016-09-20 08:02:45 -07:00
{{notification.amountStr}}:
2016-09-01 12:56:35 -07:00
</div>
2016-08-30 16:00:17 -07:00
</div>
2016-09-20 08:02:45 -07:00
<span ng-if="notification.type == 'NewTxProposal'">
2016-09-01 12:56:35 -07:00
<span translate>New Proposal</span>:
2016-09-20 08:02:45 -07:00
<b>{{notification.message}}</b>
2016-09-01 12:56:35 -07:00
<div class="wallet-activity-amount">
2016-09-20 08:02:45 -07:00
{{notification.amountStr}}
2016-09-01 12:56:35 -07:00
</div>
2016-09-01 12:50:13 -07:00
</span>
2016-08-30 16:00:17 -07:00
2016-09-20 08:02:45 -07:00
<span ng-if="notification.type == 'TxProposalAcceptedBy'">
2016-09-01 15:14:18 -07:00
<span translate>Proposal Accepted</span>:
2016-09-20 08:02:45 -07:00
<b>{{notification.message}}</b>
2016-09-01 12:56:35 -07:00
<div class="wallet-activity-amount">
2016-09-20 08:02:45 -07:00
{{notification.amountStr}}
2016-09-01 12:56:35 -07:00
</div>
2016-09-01 12:50:13 -07:00
</span>
2016-08-30 16:00:17 -07:00
<p class="wallet-activity-note">
2016-09-20 08:02:45 -07:00
<!-- {{notification.types}} -->
<i class="icon ion-record wallet-activity-note-child" ng-style="{'color':notification.wallet.color}"></i>
<span ng-if="notification.creatorName" class="wallet-activity-note-child">{{ notification.creatorName}}@</span>
<span class="wallet-activity-note-child">{{notification.wallet.name}}</span>
<time class="wallet-activity-note-child">{{ notification.createdOn * 1000 | amTimeAgo}}</time>
2016-08-30 16:00:17 -07:00
</p>
2016-08-24 13:54:01 -07:00
</span>