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

16 lines
342 B
Text
Raw Normal View History

2014-01-03 13:32:13 -05:00
table.table
tr
th(colspan=3) Results: #{documents.length}
tr
th Name
th Body
th Version
for article in documents
tr
td
a(href="/editor/article/#{article.slug || article._id}")
| #{article.name}
td.body-row #{article.body}
td #{article.version.major}.#{article.version.minor}