Page tree

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 21 Next »

Simple user macro to shows page's attachments with metadata (ID - title - version)

Online demo



Source code


#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>
  • No labels