$action.getText("text.undefined.pages.description")
#if( $key )
#set( $contextPath = "listundefinedpages.action?key=${key}&" )
#else
#set( $contextPath = "listundefinedpages.action?" )
#end
#pagination($action.paginationSupport $contextPath)
$action.getText("heading.title.undef") |
$action.getText("heading.referrer.title") |
#if( !$action.undefinedPages || $action.undefinedPages.size()==0 )
$action.getText("there.are.no.pages")
|
#else
#set ($startIndex = $action.paginationSupport.startIndex)
#set( $currentItems = $action.paginationSupport.page )
#set ($maxReferencesPerPage = $action.maxReferencesPerUndefinedPage)
#foreach( $link in $currentItems )
#if ($generalUtil.isAllAscii($link.destinationPageTitle))
$webwork.htmlEncode($link.destinationPageTitle)
#else
$webwork.htmlEncode($link.destinationPageTitle)
#end
|
#foreach($from in $link.referencedFrom)
#if ($velocityCount == 1)
#contentLink($from)
#else
#contentLink($from)
#end
#end
#if ($link.numReferences > $maxReferencesPerPage)
#set ($more = $link.numReferences - $maxReferencesPerPage)
$i18n.getText('undefined.pages.list.more', $more)
#end
|
#end
#end
#pagination($action.paginationSupport $contextPath)
|