mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 08:38:09 -05:00
16 lines
340 B
Text
16 lines
340 B
Text
|
table.table.systems-table
|
||
|
tr
|
||
|
th(colspan=3) Results: #{systems.length}
|
||
|
|
||
|
tr
|
||
|
th Name
|
||
|
th Description
|
||
|
th Version
|
||
|
th
|
||
|
|
||
|
for system in systems
|
||
|
tr
|
||
|
td.body-row #{system.description}
|
||
|
td #{system.version.major}.#{system.version.minor}
|
||
|
td
|
||
|
i.icon-pencil.edit-system-button(data-name=system.name)
|