Simple user macro to shows page's attachments with metadata (ID - title - version)
Online demo
Source code
## @noparams #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>