add confirmations item to tx-details

This commit is contained in:
Marty Alcala 2016-11-03 15:24:39 -04:00
commit 77b59d93fa

View file

@ -54,12 +54,21 @@
</span> </span>
<i class="icon bp-arrow-right"></i> <i class="icon bp-arrow-right"></i>
</a> </a>
<div class="item single-line" ng-hide="insuffientFunds"> <div class="item single-line">
<span class="label" translate>Fee</span> <span class="label" translate>Fee</span>
<span class="item-note"> <span class="item-note">
{{btx.feeStr}} {{btx.feeStr}}
</span> </span>
</div> </div>
<div class="item single-line">
<span class="label" translate>Confirmations</span>
<span class="item-note" ng-if="btx.confirmations < 6">
{{btx.confirmations}}
</span>
<span class="item-note" ng-if="btx.confirmations >= 6">
6+
</span>
</div>
<div ng-if="actionList[0]"> <div ng-if="actionList[0]">
<div class="item item-divider" translate>Timeline</div> <div class="item item-divider" translate>Timeline</div>
<div class="item timeline-item" ng-class="{'action-created' : a.type == 'created' || a.type == 'accept', 'action-rejected' : a.type == 'reject'}" ng-repeat="a in actionList | orderBy: 'time' :true track by $index"> <div class="item timeline-item" ng-class="{'action-created' : a.type == 'created' || a.type == 'accept', 'action-rejected' : a.type == 'reject'}" ng-repeat="a in actionList | orderBy: 'time' :true track by $index">