Wiki source code of XWikiTube Home
Last modified by Ryan C on 2025/03/07 23:43
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | {{velocity}} | ||
2 | #set ($discard = $services.localization.use('document', 'XWikiTubeCode.XWikiTubeTranslations')) | ||
3 | #set ($columnsProperties = { | ||
4 | 'doc.name': {"type":"text","size":10,"link":"view"}, | ||
5 | 'title': {"type":"text","size":10}, | ||
6 | 'category': {"type":"list","size":10}, | ||
7 | 'doc.creationDate': {"type":"text","size":10}, | ||
8 | 'doc.author': {"type":"text","size":10,"link":"author"}, | ||
9 | '_actions': {"sortable":false,"filterable":false,"html":true,"actions":["edit","delete"]} | ||
10 | }) | ||
11 | #set ($options = { | ||
12 | 'className': 'XWikiTubeCode.XWikiTubeClass', | ||
13 | 'resultPage': 'XWikiTubeCode.XWikiTubeLiveTableResults', | ||
14 | 'translationPrefix': 'xwikitube.livetable.', | ||
15 | 'tagCloud': true, | ||
16 | 'rowCount': 15, | ||
17 | 'maxPages': 10, | ||
18 | 'selectedColumn': 'doc.name', | ||
19 | 'defaultOrder': 'asc' | ||
20 | }) | ||
21 | #set ($columns = ['doc.name', 'title', 'category', 'doc.creationDate', 'doc.author', '_actions']) | ||
22 | #livetable('xwikitube' $columns $columnsProperties $options) | ||
23 | {{/velocity}} |