22 lines
1006 B
HTML
22 lines
1006 B
HTML
<template name="timepointBrowserItem">
|
|
<div class="timepoint-browser-item">
|
|
<div class="timepointEntry p-y-2">
|
|
<div class="timepointDetails clearfix">
|
|
<div class="timepointFollowupTitle pull-left">
|
|
{{this.timepointApi.title timepoint}}
|
|
</div>
|
|
<div class="expandIcon pull-right">
|
|
<i class="fa fa-chevron-down"></i>
|
|
</div>
|
|
<div class="timepointDate pull-right m-r-1">{{formatDA this.timepoint.earliestDate 'D-MMM-YYYY'}}</div>
|
|
</div>
|
|
<div class="timepointModalities">{{choose instance.summary.get 'Click to load'}}</div>
|
|
</div>
|
|
{{#if this.timepointChildTemplate}}
|
|
{{#if and (not instance.loading.get) instance.loaded}}
|
|
{{>Template.dynamic template=this.timepointChildTemplate data=(clone this studiesInformation=timepoint.studiesData)}}
|
|
{{/if}}
|
|
{{/if}}
|
|
</div>
|
|
</template>
|