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

18 lines
428 B
Text
Raw Normal View History

extends /templates/common/table
block tableHeader
tr
th(data-i18n="general.name") Name
th(data-i18n="general.description") Description
th(data-i18n="general.collection") Collection
block tableBody
for data in documents
2015-03-07 19:30:25 -05:00
- data = data.attributes;
tr
td
a(href="/editor/achievement/#{data.slug || data._id}")
| #{data.name}
td #{data.description}
td #{data.collection}