48 lines
1.4 KiB
HTML
48 lines
1.4 KiB
HTML
|
|
<div
|
|
class="topbar-container"
|
|
ng-include="'views/includes/topbar.html'"
|
|
ng-init="titleSection='Glidera'; closeToHome = true">
|
|
</div>
|
|
|
|
|
|
<div class="content glidera" ng-controller="glideraController as glidera">
|
|
<div class="row">
|
|
<div class="large-12 columns">
|
|
|
|
<a href ng-if="!index.glideraToken" ng-click="$root.go('preferencesGlidera')">
|
|
Connect to Glidera
|
|
</a>
|
|
|
|
<div ng-if="index.glideraToken" ng-init="glidera.init(index.glideraToken)">
|
|
Connected to Glidera - <a href ng-click="$root.go('preferencesGlidera')">Preferences</a>
|
|
|
|
<div>
|
|
<button class="" ng-click="$root.go('buyGlidera')">Buy</button>
|
|
<button class="" ng-click="$root.go('sellGlidera')">Sell</button>
|
|
</div>
|
|
|
|
<h2>Transactions</h2>
|
|
<ul>
|
|
<li ng-repeat="tx in glidera.txs">
|
|
transactionUuid: {{tx.transactionUuid}} <br>
|
|
transactionDate: {{tx.transactionDate}} <br>
|
|
type: {{tx.type}} <br>
|
|
price: {{tx.price}} <br>
|
|
subtotal: {{tx.subtotal}} <br>
|
|
fees: {{tx.fees}} <br>
|
|
total: {{tx.total}} <br>
|
|
currency: {{tx.currency}} <br>
|
|
estimatedDeliveryDate: {{tx.estimatedDeliveryDate}} <br>
|
|
transactionHash: {{tx.transactionHash}} <br>
|
|
status: {{tx.status}}<br>
|
|
</li>
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="extra-margin-bottom"></div>
|