2015-10-23 18:21:46 +02:00
|
|
|
<template name="lesionTableRow">
|
|
|
|
|
<tr>
|
2015-10-29 13:50:28 +01:00
|
|
|
<th class='lesionNumber'>{{lesionData.lesionNumber}}</th>
|
|
|
|
|
<th class='target'>{{#if lesionData.isTarget}} Y {{else}} N {{/if}}</th>
|
|
|
|
|
<th class='location'>{{lesionData.location}}</th>
|
2015-10-23 18:21:46 +02:00
|
|
|
<!--Each time point as a column-->
|
2015-10-29 13:50:28 +01:00
|
|
|
{{# each timepoints }}
|
|
|
|
|
{{> lesionTableTimepointCell }}
|
|
|
|
|
{{/ each }}
|
2015-10-23 18:21:46 +02:00
|
|
|
</tr>
|
|
|
|
|
</template>
|