sportsbet-mobile
Version:
Sportsbet mobile
23 lines (19 loc) • 712 B
HTML
<template name="defaultWithSbvTruncated">
<!--
This template trunkates the competitor name, making sure
that the special bet value is always visible
-->
<div class="additional">
{{#each orderedSelections}}
<a class="col-sm-{{../tplSelectionsCount}} {{#if or suspended (not ../active)}}suspended{{/if}} selection">
<div class="{{#if selected}}active{{/if}}">
<span class="truncate-special-bet">{{text}}</span>
<span class="specialBetValue">{{specialBetValueText}}</span>
<b class="show">{{#if suspended}}N/A{{else}}{{displayOdds backOddsMultiplied}}{{/if}}</b>
<span class="clearfix"></span>
</div>
</a>
{{/each}}
<div class="clearfix"></div>
</div>
</template>