mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
21 lines
545 B
Text
21 lines
545 B
Text
|
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/#{page}/#{data.slug || data._id}")
|
||
|
| #{data.name}
|
||
|
td.body-row #{data.description}
|
||
|
td #{data.version.major}.#{data.version.minor}
|