copay/public/views/modals/glidera-tx-details.html

64 lines
2.1 KiB
HTML
Raw Normal View History

2015-09-02 12:02:40 -07:00
<nav class="tab-bar">
<section class="left-small">
<a ng-click="cancel()">
<i class="icon-arrow-left3 icon-back"></i>
2015-09-12 19:49:14 -07:00
<span class="text-back">Back</span>
2015-09-02 12:02:40 -07:00
</a>
</section>
<section class="middle tab-bar-section">
2015-09-12 19:49:14 -07:00
<h1 class="title ellipsis" ng-style="{'color':color}">
2015-09-29 10:54:03 -07:00
Details
2015-09-02 12:02:40 -07:00
</h1>
</section>
</nav>
<div class="modal-content fix-modals-touch">
2015-09-29 10:54:03 -07:00
<div class="header-modal bg-gray text-center">
<div class="p20">
<i class="icon-buy-btc size-60" ng-show="tx.type == 'BUY'"></i>
<i class="icon-sell-btc size-60" ng-show="tx.type == 'SELL'"></i>
2015-09-02 12:02:40 -07:00
</div>
2015-09-29 10:54:03 -07:00
<span ng-show="tx.type == 'BUY'">Bought</span>
<span ng-show="tx.type == 'SELL'">Sold</span>
<div class="size-36 m20b">
{{tx.subtotal|currency:'':2}} {{tx.currency}}
2015-09-02 12:02:40 -07:00
</div>
</div>
<ul class="no-bullet size-14 m0">
2015-09-29 10:54:03 -07:00
<li class="line-b p10 oh">
<span class="text-gray">Status</span>
<span class="text-success right" ng-if="tx.status == 'COMPLETE'">Completed</span>
<span class="text-info right" ng-if="tx.status == 'PROCESSING'">Processing</span>
<span class="text-warning right" ng-if="tx.status == 'ERROR'">Error</span>
</li>
2015-09-02 12:02:40 -07:00
<li ng-show="tx.transactionDate" class="line-b p10 oh">
2015-09-12 19:49:14 -07:00
<span class="text-gray">Date</span>
2015-09-02 12:02:40 -07:00
<span class="right">{{tx.transactionDate | amCalendar}}</span>
</li>
<li ng-show="tx.price" class="line-b p10 oh">
2015-09-12 19:49:14 -07:00
<span class="text-gray">Exchange rate</span>
2015-09-10 12:19:07 -07:00
<span class="right">{{tx.price|currency:'':2}} {{tx.currency}}/BTC</span>
2015-09-29 10:54:03 -07:00
</li>
2015-09-02 12:02:40 -07:00
<li ng-show="tx.subtotal" class="line-b p10 oh">
2015-09-12 19:49:14 -07:00
<span class="text-gray">Subtotal</span>
2015-09-10 12:19:07 -07:00
<span class="right">{{tx.subtotal|currency:'':2}} {{tx.currency}}</span>
2015-09-02 12:02:40 -07:00
</li>
<li ng-show="tx.fees" class="line-b p10 oh">
2015-09-12 19:49:14 -07:00
<span class="text-gray">Fees</span>
2015-09-10 12:19:07 -07:00
<span class="right">{{tx.fees|currency:'':2}} {{tx.currency}}</span>
2015-09-02 12:02:40 -07:00
</li>
2015-09-10 12:19:07 -07:00
<li ng-show="tx.total" class="line-b p10 oh text-bold">
2015-09-12 19:49:14 -07:00
<span class="text-gray">Total</span>
2015-09-10 12:19:07 -07:00
<span class="right">{{tx.total|currency:'':2}} {{tx.currency}}</span>
2015-09-02 12:02:40 -07:00
</li>
</ul>
<div class="extra-margin-bottom"></div>
</div>