@(table: Table, highlightTeamId: Option[String] = None)(implicit request: RequestHeader)
  • @table.competition.fullName table

    Last updated: a minute ago

    @if(!table.multiGroup) { @fragments.tableColumnHeaders() } @table.groups.map{ group => @if(table.multiGroup) { @group.round.map { round => @round.name.map { name => @* we repeat this nav for group tables *@ @fragments.tableColumnHeaders() } } } @group.entries.zipWithRowInfo.map{ case (entry, row) => @fragments.tableRow(entry, row, highlightTeamId.map(_ == entry.team.id).getOrElse(false)) } }
    @name
    View full table