2015-10-23 18:21:46 +02:00
|
|
|
<template name="lesionTable">
|
|
|
|
|
<div id="lesionTableContainer">
|
2015-11-11 00:05:01 +01:00
|
|
|
<table class="table table-striped noselect lesionTable" id="tblLesion">
|
2015-10-23 18:21:46 +02:00
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th id="thNumber">Lesion #</th>
|
|
|
|
|
<th id="thLocation">Location</th>
|
2015-10-30 17:16:09 +01:00
|
|
|
<th id="thTarget">Target</th>
|
2015-10-23 18:21:46 +02:00
|
|
|
<!--Each time point name as a column-->
|
2015-11-06 17:35:35 +01:00
|
|
|
{{ #each timepoints }}
|
|
|
|
|
{{ >lesionTableTimepointHeader }}
|
2015-10-23 18:21:46 +02:00
|
|
|
{{ /each }}
|
2015-11-11 00:05:01 +01:00
|
|
|
<!--What is this for?-->
|
|
|
|
|
<!--<th id="thSpacer"> </th>-->
|
2015-10-23 18:21:46 +02:00
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
2015-11-06 17:35:35 +01:00
|
|
|
<!--Each measurement as row-->
|
2015-10-23 18:21:46 +02:00
|
|
|
{{ #each measurement }}
|
|
|
|
|
{{ >lesionTableRow }}
|
|
|
|
|
{{ /each }}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|