Fixed the ladder table.
This commit is contained in:
parent
8775e86161
commit
9bea226677
2 changed files with 7 additions and 2 deletions
app
|
@ -1,2 +1,4 @@
|
||||||
#ladder-view
|
#ladder-view
|
||||||
color: black
|
color: black
|
||||||
|
.score-cell
|
||||||
|
width: 50px
|
|
@ -19,7 +19,10 @@ block content
|
||||||
h4 Leaderboard
|
h4 Leaderboard
|
||||||
table.table
|
table.table
|
||||||
for session in team.leaderboard.topPlayers.models
|
for session in team.leaderboard.topPlayers.models
|
||||||
tr= session.get('creatorName')
|
tr
|
||||||
|
td.score-cell= parseInt(session.get('totalScore'))
|
||||||
|
td= session.get('creatorName')
|
||||||
|
|
||||||
//.challengers
|
//.challengers
|
||||||
// h4 Challengers
|
// h4 Challengers
|
||||||
//
|
//
|
||||||
|
|
Reference in a new issue