vitro/webapp/web/templates/freemarker/body/admin/admin-showThreads.ftl

31 lines
1 KiB
Text
Raw Normal View History

<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#-- Template viewing the authorization mechanisms: current identifiers, factories, policies, etc. -->
<style media="screen" type="text/css">
table.threadInfo {
margin: 10px 10px 10px 10px;
border: medium groove black;
text-align: left;
}
table.threadInfo th, td {
padding: 4px 10px 4px 10px;
}
table.threadInfo th {
font-weight: bolder;
}
</style>
<h2>${i18n().background_threads}</h2>
<section id="show-threads" role="region">
<#list threads as threadInfo>
<table class="threadInfo ${threadInfo.workLevel}" summary="Thread ${threadInfo.name}">
<tr><th>${i18n().name}</th><td>${threadInfo.name}</td></tr>
<tr><th>${i18n().work_level}</th><td>${threadInfo.workLevel}</td></tr>
<tr><th>${i18n().since}</th><td>${threadInfo.since}</td></tr>
<tr><th>${i18n().flags}</th><td>${threadInfo.flags}</td></tr>
</table>
</#list>
</section>