2015-10-23 18:21:46 +02:00
|
|
|
<template name="lesionTable">
|
|
|
|
|
<div id="lesionTableContainer">
|
|
|
|
|
<table class="table table-bordered lesionTable" id="tblLesion">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th id="thNumber">Lesion #</th>
|
|
|
|
|
<th id="thTarget">Target</th>
|
|
|
|
|
<th id="thLocation">Location</th>
|
|
|
|
|
<!--Each time point name as a column-->
|
|
|
|
|
{{ #each timepointNames }}
|
|
|
|
|
{{ >lesionTableTimepointHeader }}
|
|
|
|
|
{{ /each }}
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
{{ #each measurement }}
|
|
|
|
|
{{ >lesionTableRow }}
|
|
|
|
|
{{ /each }}
|
2015-10-29 13:50:28 +01:00
|
|
|
|
|
|
|
|
|
2015-10-23 18:21:46 +02:00
|
|
|
<!--Each measurement as row-->
|
|
|
|
|
<!--Each time point as a column-->
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|