30 lines
1.5 KiB
HTML
30 lines
1.5 KiB
HTML
<template name="studyTimepointBrowser">
|
|
<div class="studyTimepointBrowser">
|
|
<div class="studyTimepointScrollArea">
|
|
<div class="p-x-1">
|
|
{{#each timepoint in timepoints}}
|
|
{{#if shouldShowTimepoint timepoint @index}}
|
|
<div class="timepointEntry p-y-2">
|
|
<div class="timepointHeader">
|
|
<div class="timepointDetails clearfix">
|
|
<div class="timepointFollowupTitle pull-left">
|
|
{{timepointTitle timepoint timepoints.count @index}}
|
|
</div>
|
|
<div class="expandIcon pull-right">
|
|
<i class="fa fa-chevron-down"></i>
|
|
</div>
|
|
<div class="timepointDate pull-right m-r-1">{{formatDA timepoint.earliestDate 'D-MMM-YYYY'}}</div>
|
|
</div>
|
|
<!-- TODO: [design] find out where to get this information -->
|
|
<div class="timepointModalities">2 MR, 2 CT</div>
|
|
</div>
|
|
{{>studyTimepoint timepoint=timepoint index=@index}}
|
|
</div>
|
|
<hr class="m-y-1">
|
|
{{/if}}
|
|
{{/each}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|