codecombat/app/templates/editor/level/table.jade
Mikhail Koltsov baf8adcc74 added nothing
2014-03-22 20:50:50 +04:00

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}