compendium-browser/template/template.html

11 lines
702 B
HTML
Raw Normal View History

2019-12-29 16:54:57 +00:00
<div class="tabs" data-group="toplvl">
{{#if showSpellBrowser}}<a class="item" data-tab="spell">{{localize "CMPBrowser.spellBrowser"}}</a>{{/if}}
{{#if showNpcBrowser}}<a class="item" data-tab="npc">{{localize "CMPBrowser.npcBrowser"}}</a>{{/if}}
{{#if isGM}}<a class="item" data-tab="setting">{{localize "CMPBrowser.settings"}}</a>{{/if}}
2019-12-29 16:54:57 +00:00
</div>
<div class="tabContainer">
{{#if showSpellBrowser}}{{> "modules/compendium-browser/template/spell-browser.html"}}{{/if}}
{{#if showNpcBrowser}} {{> "modules/compendium-browser/template/npc-browser.html"}}{{/if}}
{{#if isGM}} {{> "modules/compendium-browser/template/settings.html"}}{{/if}}
</div>