|
|
|
@ -16,18 +16,18 @@ |
|
|
|
<div> |
|
|
|
<div> |
|
|
|
|
|
|
|
|
|
|
|
<div class="match-result"> |
|
|
|
<div class="match-result"> |
|
|
|
<div class="player bold"> |
|
|
|
<div class="player"> |
|
|
|
<!-- Show lucky loser or walkout status --> |
|
|
|
<!-- Show lucky loser or walkout status --> |
|
|
|
<template x-if="match.teams[i-1].is_lucky_loser"> |
|
|
|
<template x-if="match.teams[i-1].is_lucky_loser"> |
|
|
|
<div class="small">Repêché</div> |
|
|
|
<div class="overlay-text right-label minor-info semibold">(LL)</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
<template x-if="match.teams[i-1].walk_out === 1"> |
|
|
|
<template x-if="match.teams[i-1].walk_out === 1"> |
|
|
|
<div class="small">Forfait</div> |
|
|
|
<div class="overlay-text right-label minor-info semibold">(WO)</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
<template x-for="name in match.teams[i-1].names"> |
|
|
|
<template x-for="name in match.teams[i-1].names"> |
|
|
|
<div :class="{ |
|
|
|
<div :class="{ |
|
|
|
'semibold': true, |
|
|
|
'bold': true, |
|
|
|
'strikethrough': match.teams[i-1].walk_out === 1, |
|
|
|
'strikethrough': match.teams[i-1].walk_out === 1, |
|
|
|
'winner': match.teams[i-1].is_winner |
|
|
|
'winner': match.teams[i-1].is_winner |
|
|
|
}"> |
|
|
|
}"> |
|
|
|
@ -74,7 +74,7 @@ |
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
<div class="status-container" :class="{'running': !match.ended && match.started}"> |
|
|
|
<div class="top-margin flex-row"> |
|
|
|
<div class="top-margin flex-row"> |
|
|
|
<label class="left-label minor-info bold"><span x-text="match.time_indication"></span></label> |
|
|
|
<label class="left-label minor-info bold"><span x-text="match.time_indication"></span></label> |
|
|
|
<label class="right-label minor-info semibold"><span x-text="match.format"></span></label> |
|
|
|
<label class="right-label minor-info semibold"><span x-text="match.format"></span></label> |
|
|
|
|