Wiki source code of UserDirectory

Version 2.1 by JeromeVelociter on 2010/03/02 08:46

Show last authors
1 {{velocity}}
2 #set($collist = ["_avatar", "first_name","last_name", "doc.creationDate"])
3 #set($colprops = {
4 "_avatar" : { "type" : "text" , "size" : 30, "link" : "view"},
5 "first_name" : { "type" : "text", "link" : "view"},
6 "last_name" : { "type" : "text", "link" : "view"},
7 "doc.creationDate" : { "type" : "text", "link" : "none"}
8 })
9 #set($options = { "className" : "XWiki.XWikiUsers",
10 "translationPrefix" : "xe.index.",
11 "rowCount": 15,
12 "description": "This table lists all the documents found on this wiki. The columns can be sorted and some can be filtered." })
13 #livetable("alldocs" $collist $colprops $options)
14 {{/velocity}}
15
16 {{velocity}}