portal.default.mint.handles.vm Maven / Gradle / Ivy
#if ($self.isCSV())
#if (!$page.authentication.is_admin())
ERROR! You are not an administrator.
#else
"ID","Link","Title","Handle","RIF-CS","Data Source"
#foreach ($item in $self.getRows())
"$item.getFirst("id")","${urlBase}default/detail/$item.getFirst("id")","$item.getFirst("dc_title")","$item.getFirst("handle")","$item.getFirst("repository_type")","$item.getFirst("repository_name")"
#end
#end
#else
#set($pageTitle = 'Handle Report')
$pageTitle
#if (!$page.authentication.is_admin())
Sorry, but you need to be logged in as an administrator to use this screen.
#else
#set($contentTitle = "Handle Report")
#parse($page.getTemplate('wrapping/content-block-open.vm'))
#set($contentTitle = $nullValue)
#set ($count = $self.getRowCount())
#if ($count == 0)
No handles match that search!
#else
$count records found: CSV
ID (and link)
Title
Handle
RIF-CS
Data Source
#foreach ($item in $self.getRows())
$item.getFirst("id")
$item.getFirst("dc_title")
$item.getFirst("handle")
$item.getFirst("repository_type")
$item.getFirst("repository_name")
#end
#end
#parse($page.getTemplate('wrapping/content-block-close.vm'))
#end
#end
© 2015 - 2025 Weber Informatics LLC | Privacy Policy