mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 08:38:09 -05:00
31 lines
No EOL
895 B
Text
31 lines
No EOL
895 B
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= session.get('creatorName')
|
|
.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 |