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