2012-10-15 19:23:05 +00:00
|
|
|
<#-- $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>
|
|
|
|
|
|
|
|
|
2013-05-13 12:17:39 -04:00
|
|
|
<h2>${i18n().background_threads}</h2>
|
2012-10-15 19:23:05 +00:00
|
|
|
|
|
|
|
<section id="show-threads" role="region">
|
|
|
|
<#list threads as threadInfo>
|
|
|
|
<table class="threadInfo ${threadInfo.workLevel}" summary="Thread ${threadInfo.name}">
|
2013-05-13 12:17:39 -04:00
|
|
|
<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>
|
2012-10-15 19:23:05 +00:00
|
|
|
</table>
|
|
|
|
</#list>
|
|
|
|
</section>
|