mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-28 10:06:08 -05:00
Various interface tweaks
This commit is contained in:
parent
a2b811d52f
commit
6d6cac7309
2 changed files with 2 additions and 2 deletions
|
@ -11,7 +11,7 @@ block content
|
||||||
for team in teams
|
for team in teams
|
||||||
div.column.col-md-6
|
div.column.col-md-6
|
||||||
a(href="/play/ladder/#{levelID}/team/#{team.id}", style="background-color: #{team.primaryColor}").play-button.btn.btn-danger.btn-block.btn-lg
|
a(href="/play/ladder/#{levelID}/team/#{team.id}", style="background-color: #{team.primaryColor}").play-button.btn.btn-danger.btn-block.btn-lg
|
||||||
span Play
|
span Play As
|
||||||
span= team.name
|
span= team.name
|
||||||
|
|
||||||
table.table.table-bordered.table-condensed.table-hover
|
table.table.table-bordered.table-condensed.table-hover
|
||||||
|
|
|
@ -39,7 +39,7 @@ block content
|
||||||
span.loss Loss
|
span.loss Loss
|
||||||
if match.state === 'tie'
|
if match.state === 'tie'
|
||||||
span.tie Tie
|
span.tie Tie
|
||||||
td.name-cell= match.opponentName
|
td.name-cell= match.opponentName || "Anonymous"
|
||||||
td.time-cell= match.when
|
td.time-cell= match.when
|
||||||
td.battle-cell
|
td.battle-cell
|
||||||
a(href="/play/level/#{levelID}?team=#{teamID}&opponent=#{match.sessionID}") Battle!
|
a(href="/play/level/#{levelID}?team=#{teamID}&opponent=#{match.sessionID}") Battle!
|
||||||
|
|
Loading…
Reference in a new issue