
2. Abstracted out the table generating code for sparklines out. This gives us flexibility to put the table wherever we want in the template. 3. Made changes to coauth person l;evel page to display all the content. TThe data is all there with links. 4. Adapted person pub count & coauth sparklines to adapt to new table generating template. 5. Changed coauth vis code gen to include a missing data value. 6. Fixed a bug in person level req handler.
29 lines
No EOL
554 B
Text
29 lines
No EOL
554 B
Text
<table id='${tableID}'>
|
|
<caption>
|
|
${tableCaption} <a href="${fileDownloadLink}">(.CSV File)</a>
|
|
</caption>
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
Year
|
|
</th>
|
|
<th>
|
|
${tableActivityColumnName}
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
<#list tableContent?keys as year>
|
|
<tr>
|
|
<td>
|
|
${year}
|
|
</td>
|
|
<td>
|
|
${tableContent[year]}
|
|
</td>
|
|
</tr>
|
|
</#list>
|
|
|
|
</tbody>
|
|
</table> |