2015-10-13 14:14:50 +02:00
|
|
|
<template name="hidingPanel">
|
|
|
|
|
<div class="hidingPanel">
|
2015-12-10 13:45:13 +01:00
|
|
|
<i class="arrowIcon fa fa-angle-double-right"></i>
|
|
|
|
|
<div class="hidingPanelContent">
|
|
|
|
|
<div class="panelPinContainer">
|
|
|
|
|
{{#if panelPinned}}
|
|
|
|
|
<button class="btnPin btnPinActive">
|
|
|
|
|
<i class="pinIcon pinActive fa fa-thumb-tack"></i>
|
|
|
|
|
</button>
|
|
|
|
|
{{else}}
|
|
|
|
|
<button class="btnPin btnPinInactive">
|
|
|
|
|
<i class="pinIcon pinInactive fa fa-thumb-tack"></i>
|
|
|
|
|
</button>
|
|
|
|
|
{{/if}}
|
|
|
|
|
</div>
|
|
|
|
|
|
2015-11-18 01:01:41 +01:00
|
|
|
{{#if studyDateIsShown}}
|
|
|
|
|
{{> studyDateList}}
|
|
|
|
|
{{/if}}
|
2015-12-10 13:45:13 +01:00
|
|
|
|
|
|
|
|
<div class="studyBrowserContainer">
|
|
|
|
|
{{> studyBrowser}}
|
|
|
|
|
</div>
|
2015-11-03 17:27:43 +01:00
|
|
|
</div>
|
2015-10-13 14:14:50 +02:00
|
|
|
</div>
|
|
|
|
|
</template>
|