codecombat/app/templates/editor/level/table.jade

22 lines
523 B
Text
Raw Normal View History

2014-03-12 11:03:36 -04:00
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
2014-03-22 12:50:50 -04:00
2014-03-12 11:03:36 -04:00
for data in documents
- data = data.attributes;
tr
td
a(href="/editor/level/#{data.slug || data._id}")
| #{data.name}
td.body-row #{data.description}
2014-03-22 12:50:50 -04:00
td #{data.version.major}.#{data.version.minor}