2011-01-05 19:35:32 +00:00
|
|
|
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
|
|
|
|
2010-12-23 23:55:57 +00:00
|
|
|
<table id='${tableID}'>
|
|
|
|
<caption>
|
2013-05-31 11:56:18 -04:00
|
|
|
${tableCaption} <a href="${fileDownloadLink}">(.CSV ${i18n().file_capitalized})</a>
|
2010-12-23 23:55:57 +00:00
|
|
|
</caption>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>
|
2013-05-31 11:56:18 -04:00
|
|
|
${i18n().year_capitalized}
|
2010-12-23 23:55:57 +00:00
|
|
|
</th>
|
|
|
|
<th>
|
|
|
|
${tableActivityColumnName}
|
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
|
|
|
|
<#list tableContent?keys as year>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
${year}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
${tableContent[year]}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</#list>
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
</table>
|