mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
21 lines
523 B
Text
Executable file
21 lines
523 B
Text
Executable file
table.table
|
|
tr
|
|
th(colspan=3)
|
|
span(data-i18n="general.results")
|
|
| Results
|
|
span
|
|
|: #{documents.length}
|
|
|
|
tr
|
|
th(data-i18n="general.name") Name
|
|
th(data-i18n="general.description") Description
|
|
th(data-i18n="general.version") Version
|
|
|
|
for data in documents
|
|
- data = data.attributes;
|
|
tr
|
|
td
|
|
a(href="/editor/level/#{data.slug || data._id}")
|
|
| #{data.name}
|
|
td.body-row #{data.description}
|
|
td #{data.version.major}.#{data.version.minor}
|