Wiki source code of WebHome
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | {{velocity}} | ||
2 | #set($collist = ['doc.name', 'doc.date', 'doc.author']) | ||
3 | #set($colprops = { | ||
4 | 'doc.name' : { 'type' : 'text' , 'size' : 30, 'link' : 'view' }, | ||
5 | 'doc.date' : { 'type' : 'date' }, | ||
6 | 'doc.author' : { 'type' : 'text', 'link' : 'author' } | ||
7 | }) | ||
8 | #set($options = { | ||
9 | 'translationPrefix' : 'xe.index.', | ||
10 | 'rowCount' : 15, | ||
11 | 'description' : 'This table lists all the documents found on this space. The columns can be sorted and some can be filtered.', | ||
12 | 'className' : 'EmployeesCosts.EmployeesCostsClass' | ||
13 | }) | ||
14 | #if(!$isGuest) | ||
15 | #set($discard = $collist.add('_actions')) | ||
16 | #set($discard = $colprops.put('_actions', { 'actions' : ['edit', 'delete'] })) | ||
17 | #end | ||
18 | #livetable('alldocs' $collist $colprops $options) | ||
19 | {{/velocity}} |