2016-08-23 23:00:06 +02:00
|
|
|
<template name="displaySetNavigation">
|
|
|
|
|
<div id="{{this.id}}"
|
2016-09-03 01:07:14 +02:00
|
|
|
class="toolbarSectionButton rp-x-1 {{this.classes}} {{#if isNext}}js-next{{else}}js-prev{{/if}} {{#if (disableButton isNext)}}disabled{{/if}}"
|
2016-08-23 23:00:06 +02:00
|
|
|
title="{{this.title}}">
|
|
|
|
|
<div class="svgContainer">
|
2016-09-03 01:07:14 +02:00
|
|
|
{{#if isNext}}
|
2016-08-23 23:00:06 +02:00
|
|
|
<i class="fa fa-toggle-down fa-fw"></i>
|
2016-09-03 01:07:14 +02:00
|
|
|
{{else}}
|
|
|
|
|
<i class="fa fa-toggle-up fa-fw"></i>
|
2016-08-23 23:00:06 +02:00
|
|
|
{{/if}}
|
|
|
|
|
</div>
|
2016-09-03 01:07:14 +02:00
|
|
|
<div class="buttonLabel">
|
|
|
|
|
{{#if isNext}}Next{{else}}Previous{{/if}}
|
2016-08-23 23:00:06 +02:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|