2015-10-23 18:21:46 +02:00
|
|
|
<template name="lesionTableRow">
|
2015-11-22 12:20:19 +01:00
|
|
|
<tr id="{{lesionNumber}}" class="lesionTableRow" data-measurementid="{{_id}}">
|
2016-01-09 15:56:59 +01:00
|
|
|
<td class='lesionNumber'>{{lesionNumberAbsolute}}</td>
|
2015-12-19 04:24:00 +01:00
|
|
|
<td class='location' tabindex="0">{{location}}</td>
|
2015-11-06 17:35:35 +01:00
|
|
|
<td class='target'>{{#if 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 }}
|
2015-11-06 17:35:35 +01:00
|
|
|
{{> lesionTableTimepointCell}}
|
2015-10-29 13:50:28 +01:00
|
|
|
{{/ each }}
|
2015-10-23 18:21:46 +02:00
|
|
|
</tr>
|
|
|
|
|
</template>
|