ohif-viewer/Packages/lesiontracker/components/lesionTableRow/lesionTableRow.html
2015-10-30 12:16:09 -04:00

11 lines
406 B
HTML

<template name="lesionTableRow">
<tr>
<td class='lesionNumber'>{{lesionData.lesionNumber}}</td>
<td class='location'>{{lesionData.location}}</td>
<td class='target'>{{#if lesionData.isTarget}} Y {{else}} N {{/if}}</td>
<!--Each time point as a column-->
{{# each timepoints }}
{{> lesionTableTimepointCell }}
{{/ each }}
</tr>
</template>