sportsbet-mobile
Version:
Sportsbet mobile
23 lines (19 loc) • 718 B
HTML
<template name="2ColSbvTruncated">
<!--
This template forces selections into 2 columns and truncates the competitor
name, making sure that the special bet value is always visible
-->
<div class="additional">
{{#each orderedSelections}}
<a class="col-sm-6 {{#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>