UNPKG

sportsbet-mobile

Version:
88 lines 2.64 kB
<template name="sportsBetRow"> <div class="result {{#if gte data.length 1}}multibet{{/if}} {{#if selected}}active{{/if}}"> {{#if gte data.length 1}} <a role="button" data-toggle="collapse" href="#multibet1" aria-expanded="false" aria-controls="multibet1" class="info"> <div class="icon"></div> <div class="info-holder"> <h3>Multibet [{{data.length}}]</h3> <div>{{oddsFormat 'Stake'}}: {{{format stake 'BTC'}}} @ Odds: {{displayOdds odds}}</div> <div>Bet id: {{_id}}</div> </div> <div class="p-win"> {{#if rejected}} Bet rejected {{else}} {{#if settled}} {{#if negative profitLoss}} <b>{{{format 0 'BTC'}}}</b> {{else}} WON: <b>{{{format stakePlusProfit 'BTC'}}}</b> {{/if}} {{else}} Potential win: <b>{{{format potentialWin 'BTC'}}}</b> {{/if}} {{/if}} </div> </a> {{#if selected}} <div id="multibet2" class="collapse multibet-holder"> {{#each data}} <a class="data" href="#"> <h3>{{eventName}}</h3> <div> {{oddsFormat marketName}}: <b>{{selectionText}}</b> {{specialBetValueText}} / {{#if outcomeName}} Results: {{outcome}} {{else}} {{#if isPast eventStartTime}} Started: {{calendarTime eventStartTime}} {{else}} Starts in: {{{timer eventStartTime}}} {{/if}} {{/if}} </div> </a> {{/each}} </div> {{/if}} {{else}} {{#with first data}} <a href="#" class="info"> <h3>{{eventName}}</h3> <div class="info-holder"> <div>{{oddsFormat marketName}}: <b>{{selectionText}}</b> {{specialBetValueText}}</div> <div>{{oddsFormat 'Stake'}}: {{{format ../stake 'BTC'}}} @ Odds: {{displayOdds ../odds}}</div> <div> {{#if outcomeName}} Results: {{outcome}} {{else}} {{#if isPast eventStartTime}} Started: {{calendarTime eventStartTime}} {{else}} Starts in: {{{timer eventStartTime}}} {{/if}} {{/if}} </div> <div>Bet id: {{../_id}}</div> <div class="p-win"> {{#if ../rejected}} Bet rejected {{else}} {{#if ../settled}} {{#if positive ../profitLoss}} WON: <b>{{{format ../stakePlusProfit 'BTC'}}}</b> {{else}} <b>{{{format 0 'BTC'}}}</b> {{/if}} {{else}} Potential win: <b>{{{format ../potentialWin 'BTC'}}}</b> {{/if}} {{/if}} </div> <div class="clearfix"></div> </div> </a> {{/with}} {{/if}} </div> </template>