Excerpt |
---|
Simple user macro to shows page's attachments with metadata (ID - title - version) |
Online demo
Attachments list |
---|
Source code
Code Block |
---|
#set ($attachments = $action.page.attachments) <ul> #foreach($a in $attachments ) <li><strong>$a.id</strong> - <i>$a.title</i> (Version - $a.version)</li> #end </ul> |