2015-10-23 18:21:46 +02:00
|
|
|
<template name="lesionTableRow">
|
2015-10-31 15:26:57 +01:00
|
|
|
<tr id="{{lesionData.lesionNumber}}" class="lesionTableRow">
|
2015-10-30 17:16:09 +01:00
|
|
|
<td class='lesionNumber'>{{lesionData.lesionNumber}}</td>
|
|
|
|
|
<td class='location'>{{lesionData.location}}</td>
|
|
|
|
|
<td class='target'>{{#if lesionData.isTarget}} Y {{else}} N {{/if}}</td>
|
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>
|