taf/templates/generic/tabs.hbs

19 lines
360 B
Handlebars

{{#if hideTabs}}
<template></template>
{{else}}
<nav class="tabs system-tabs">
{{#each tabs as |tab|}}
{{#if tab.visible}}
<button
type="button"
class="{{tab.cssClass}}"
data-action="tab"
data-group="{{tab.group}}"
data-tab="{{tab.id}}"
>
{{localize tab.label}}
</button>
{{/if}}
{{/each}}
</nav>
{{/if}}