mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 00:28:31 -05:00
23 lines
No EOL
866 B
Text
23 lines
No EOL
866 B
Text
div#columns.row
|
|
for team in teams
|
|
div.column.col-md-6
|
|
table.table.table-bordered.table-condensed.table-hover
|
|
tr
|
|
th(colspan=4, style="color: #{team.primaryColor}")
|
|
span= team.name
|
|
span Leaderboard
|
|
tr
|
|
th Rank
|
|
th Score
|
|
th.name-col-cell Name
|
|
th
|
|
|
|
for session, rank in team.leaderboard.topPlayers.models
|
|
- var myRow = session.get('creator') == me.id
|
|
tr(class=myRow ? "success" : "")
|
|
td.rank-cell= rank + 1
|
|
td.score-cell= Math.round(session.get('totalScore') * 100)
|
|
td.name-col-cell= session.get('creatorName') || "Anonymous"
|
|
td
|
|
a(href="/play/level/#{level.get('slug') || level.id}/?team=#{team.otherTeam}&opponent=#{session.id}")
|
|
span Battle as #{team.otherTeam}! |