$action.getText("text.orphaned.pages.description")
#if( $key )
#set( $contextPath = "listorphanedpages.action?key=${key}&" )
#else
#set( $contextPath = "listorphanedpages.action?" )
#end
#pagination($action.paginationSupport $contextPath)
$action.getText("heading.title") ($action.getText("heading.page.space")) |
$action.getText("heading.creator") |
$action.getText("heading.creation.date") |
$action.getText("heading.modifier") |
$action.getText("heading.mod.date") |
$action.getText("heading.operations") |
#set ($orphanedPages = $action.paginationSupport.page)
#if( !$$orphanedPages) || $$orphanedPages.size()==0 )
$action.getText("there.are.no.pages")
|
#else
#foreach( $page in $orphanedPages)
#contentLink($page)
|
#userLink ($page.creator)
|
$dateFormatter.format( $page.creationDate )
|
#userLink ($page.lastModifier)
|
$dateFormatter.format( $page.lastModificationDate )
|
·
|
#end
#end
#pagination($action.paginationSupport $contextPath)
|