Hotfix for issue

This commit is contained in:
GlenDC 2014-01-15 03:38:33 +01:00
parent c14c55e382
commit eba0665616

21
app/templates/kinds/table.jade Executable file
View file

@ -0,0 +1,21 @@
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
for data in documents
- data = data.attributes;
tr
td
a(href="/editor/#{page}/#{data.slug || data._id}")
| #{data.name}
td.body-row #{data.description}
td #{data.version.major}.#{data.version.minor}