mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
17 lines
No EOL
378 B
Text
17 lines
No EOL
378 B
Text
table.table
|
|
tr
|
|
th(colspan=3) Results: #{documents.length}
|
|
|
|
tr
|
|
th Name
|
|
th Body
|
|
th Version
|
|
|
|
for article in documents
|
|
- article = article.attributes;
|
|
tr
|
|
td
|
|
a(href="/editor/article/#{article.slug || article._id}")
|
|
| #{article.name}
|
|
td.body-row #{article.body}
|
|
td #{article.version.major}.#{article.version.minor} |