vivo/productMods/templates/freemarker/visualization/yearToActivityCountTable.ftl
2013-05-31 11:56:18 -04:00

31 lines
No EOL
686 B
Text

<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<table id='${tableID}'>
<caption>
${tableCaption} <a href="${fileDownloadLink}">(.CSV ${i18n().file_capitalized})</a>
</caption>
<thead>
<tr>
<th>
${i18n().year_capitalized}
</th>
<th>
${tableActivityColumnName}
</th>
</tr>
</thead>
<tbody>
<#list tableContent?keys as year>
<tr>
<td>
${year}
</td>
<td>
${tableContent[year]}
</td>
</tr>
</#list>
</tbody>
</table>