org.n3r.quartz.glass.velocity.macro.history.vm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quartz-glass Show documentation
Show all versions of quartz-glass Show documentation
A web user interface for quartz
#macro (history $heading $title $items)
<$heading>$title$heading>
JobKey
TriggerKey
Start
End
Job class
DataMap
#foreach ($log in $items)
$format.html($log.jobKey)
$!format.html($log.triggerKey)
$!format.date(${log.startDate})
#if ($log.ended)
$!format.date(${log.endDate})
#if ($log.result == 'ERROR')
failed
#end
#else
running
#end
$!log.jobClass
$!log.dataMap
logs
#end
#end