Wiki source code of Space Index
Hide last authors
1.1 | 1 | {{velocity}} | |
2 | #if("$!request.space" != "") #set($space=$request.space) #else #set($space = $doc.space) #end | ||
3 | $msg.get('xe.space.index.description', [$space]) | ||
4 | #set($collist = ["doc.name","doc.date", "doc.author", "_actions"]) | ||
5 | #set($colprops = { | ||
6 | "doc.name" : { "type" : "text" , "size" : 30, "link" : "view"}, | ||
7 | "doc.date" : { "type" : "date" }, | ||
8 | "doc.author" : { "type" : "text", "link" : "author"}, | ||
9 | "_actions" : {"actions": ["copy","delete","rename","rights"]} | ||
10 | }) | ||
11 | #set($options = { "translationPrefix" : "xe.index.", | ||
12 | "rowCount": 15, | ||
13 | "extraParams" : "&space=$escapetool.url($space)" }) | ||
14 | #livetable("spaceindex" $collist $colprops $options) | ||
15 | {{/velocity}} |