11 lines
346 B
HTML
11 lines
346 B
HTML
<template name="lesionTableRow">
|
|
<tr>
|
|
<th class='lesionNumber'>{{lesionNumber}}</th>
|
|
<th class='target'>{{isTarget}}</th>
|
|
<th class='location'>{{location}}</th>
|
|
<!--Each time point as a column-->
|
|
{{ #each timepoints}}
|
|
{{ >lesionTableTimepointCell}}
|
|
{{ /each }}
|
|
</tr>
|
|
</template> |