mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
36 lines
No EOL
1.1 KiB
Text
36 lines
No EOL
1.1 KiB
Text
extends /templates/base
|
|
block content
|
|
|
|
div#level-column
|
|
h3= level.get('name')
|
|
div#level-description
|
|
!{description}
|
|
|
|
div#leaderboard-column
|
|
ul.nav.nav-pills
|
|
for team in teams
|
|
li
|
|
a(href="#team-#{team.id}", data-toggle="tab")= team.name
|
|
|
|
.tab-content
|
|
for team in teams
|
|
.tab-pane(id="team-#{team.id}")
|
|
.leaderboard
|
|
h4 Leaderboard
|
|
table.table
|
|
for session in team.leaderboard.topPlayers.models
|
|
tr
|
|
td.score-cell= parseInt(session.get('totalScore'))
|
|
td= session.get('creatorName')
|
|
td
|
|
a(href="/play/level/#{level.get('slug') || level.id}/?team=#{team.otherTeam}&opponent=#{session.id}") COMPETE
|
|
|
|
//.challengers
|
|
// h4 Challengers
|
|
//
|
|
// if team.easyChallenger
|
|
// div.challenger-select
|
|
// | Easy challenger:
|
|
// button
|
|
// a(href=link+'?team='+team.id+'&opponent='+team.easyChallenger.id)
|
|
// TODO: finish once the scoring system is finished |