sportsbet-mobile
Version:
Sportsbet mobile
40 lines (35 loc) • 907 B
HTML
<template name="transactions">
<section class="deposit">
<div class="container">
{{> bankingTabs 'history'}}
{{#unless transactions.count}}
<div class="no-results-container">
<div class="no-results">
<div class="content-holder">
<div class="body">No Transactions made yet</div>
</div>
</div>
</div>
{{else}}
<table>
<thead>
<tr>
<th>Date</th>
<th>Description</th>
<th>Amount</th>
</tr>
</thead>
<tbody>
{{#each transactions}}
<tr>
<td>{{format createTime 'MMM Do YYYY, hh:mm'}}</td>
<td class="trans-{{#if gte amountInMillis 0}}deposit{{else}}withdraw{{/if}}">{{#if gte amountInMillis 0}}Deposit{{else}}Withdraw{{/if}}</td>
<td>m฿ {{abs amountInMillis}}</td>
</tr>
{{/each}}
</tbody>
</table>
{{/unless}}
</div>
</section>
</template>