11 lines
440 B
HTML
11 lines
440 B
HTML
<template name="lesionTableRow">
|
|
<tr id="{{lesionNumber}}" class="lesionTableRow" data-measurementid="{{_id}}">
|
|
<td class='lesionNumber'>{{number}}</td>
|
|
<td class='location'>{{location}}</td>
|
|
<td class='target'>{{#if isTarget}} Y {{else}} N {{/if}}</td>
|
|
<!--Each time point as a column-->
|
|
{{# each timepoints }}
|
|
{{> lesionTableTimepointCell}}
|
|
{{/ each }}
|
|
</tr>
|
|
</template> |