mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-12-02 20:07:25 -05:00
15 lines
517 B
Text
15 lines
517 B
Text
|
extends /templates/base
|
||
|
|
||
|
block content
|
||
|
div Total number of problems: #{view.problemCount}
|
||
|
table.table.table-striped#levelTable
|
||
|
for level in (view.parsedLevels || [])
|
||
|
if (level.problems || []).length != 0
|
||
|
tr
|
||
|
td(style="width:10%")= level.level.get('slug')
|
||
|
td
|
||
|
table.table-striped
|
||
|
for problem in (level.problems || [])
|
||
|
tr(style="width:100%")
|
||
|
td.problemType= problem.type
|
||
|
td.problemValue= problem.value
|