vitro/webapp/web/templates/freemarker/body/revisionInfo.ftl

36 lines
1 KiB
Text
Raw Normal View History

<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#-- Template for the Revision Information page. -->
2010-11-12 22:00:51 +00:00
${stylesheets.add("/css/revision.css")}
<section role="region">
2010-11-12 22:00:51 +00:00
<h2>Revision Information</h2>
<section id="revision-levels" role="region">
2010-11-12 22:00:51 +00:00
<table summary="VIVO revision's levels table">
2010-11-12 22:00:51 +00:00
<caption>Levels:</caption>
<tr>
<th>name</th>
<th>release</th>
<th>revision</th>
</tr>
<#list revisionInfoBean.levelInfos as level>
<tr>
<td>${level.name}</td>
<td>${level.release}</td>
<td>${level.revision}</td>
</tr>
</#list>
</table>
</section>
2010-11-12 22:00:51 +00:00
<section id="revision-build-date" role="region">
<h3>Build date:</h3>
2010-11-12 22:00:51 +00:00
<p>${revisionInfoBean.buildDate?datetime?string.full}</p>
</section>
</section>