lila/app/views/tournament/show/finishedInner.scala.html

18 lines
438 B
HTML

@(tour: lila.tournament.Finished, games: List[Game])(implicit ctx: Context)
<span class="title_tag">@trans.finished()</span>
<h1 data-icon="g">&nbsp;@if(tour.scheduled){@tour.name} else {@trans.xTournament(tour.name)}</h1>
@tour.system match {
case lila.tournament.System.Arena => {
@tournament.arenaStanding(tour)
}
case lila.tournament.System.Swiss => {
@tournament.swissStanding(tour)
}
}
@tournament.games(games)