mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
17 lines
426 B
Text
17 lines
426 B
Text
extends /templates/kinds/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
|
|
- data = data.attributes
|
|
tr
|
|
td
|
|
a(href="/editor/achievement/#{data.slug || data._id}")
|
|
| #{data.name}
|
|
td #{data.description}
|
|
td #{data.collection}
|