Wallet/views/includes/transaction.html

35 lines
1.2 KiB
HTML
Raw Normal View History

2014-12-02 15:32:42 -03:00
2014-12-10 22:58:11 -03:00
<div class="last-transactions-content" ng-class="{'line-b':!$last}" ng-click="openTxModal(tx)">
2014-11-04 15:14:42 -03:00
<div class="row" ng-repeat="out in tx.outs">
2014-12-10 22:58:11 -03:00
<div class="large-6 medium-6 small-12 columns size-16">
2014-12-11 02:01:12 -03:00
<div class="ellipsis m10b" ng-init="pendingForUs = !tx.signedBy[$root.wallet.getMyCopayerId()] && !tx.rejectedBy[$root.wallet.getMyCopayerId()]">
<span ng-class="{'color-alert':pendingForUs, 'hidden':!pendingForUs} "></span>
2014-12-10 22:58:11 -03:00
To:
<span ng-if="tx.merchant">
2014-12-11 02:01:12 -03:00
<span ng-show="tx.merchant.pr.ca"><i class="fi-lock"></i> {{tx.merchant.domain}}</span>
<span ng-show="!tx.merchant.pr.ca"><i class="fi-unlock"></i> {{tx.merchant.domain}}</span>
2014-12-09 14:27:09 -03:00
</span>
2014-12-10 22:58:11 -03:00
</span>
<contact address="{{out.address}}" ng-hide="tx.merchant"> </contact>
2014-12-09 14:27:09 -03:00
</div>
2014-11-20 03:10:43 -03:00
</div>
2014-12-10 22:58:11 -03:00
<div class="large-6 medium-6 small-12 columns">
<div class="text-right">
<span class="size-21">
<span ng-if="!$root.updatingBalance">
{{out.value}}
2014-12-10 19:56:48 -03:00
</span>
2014-12-10 22:58:11 -03:00
{{$root.wallet.settings.unitName}}
</span>
<span class="size-14 db m5t text-gray">
{{out.alternativeAmount}} {{out.alternativeIsoCode}}
</span>
2014-12-10 19:56:48 -03:00
</div>
</div>
</div>
</div>
2014-12-02 15:32:42 -03:00