31 lines
No EOL
686 B
Text
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> |