28 lines
996 B
HTML
28 lines
996 B
HTML
<template name="tabs">
|
|
<div></div>
|
|
<ul class="nav nav-tabs">
|
|
{{#if accessible 'start'}}
|
|
<li role="presentation" class="{{ class_for 'start' }}"><a href="#">Stanje</a></li>
|
|
{{/if}}
|
|
|
|
{{#if accessible 'weather'}}
|
|
<li role="presentation" class="{{ class_for 'weather' }}"><a href="#">Vrijeme</a></li>
|
|
{{/if}}
|
|
|
|
{{#if accessible 'log'}}
|
|
<li role="presentation" class="{{ class_for 'log' }}"><a href="#">Novosti</a></li>
|
|
{{/if}}
|
|
|
|
{{#if accessible 'surveillance'}}
|
|
<li role="presentation" class="{{ class_for 'surveillance' }}"><a href="#">Videonadzor</a></li>
|
|
{{/if}}
|
|
|
|
{{#if accessible 'alarm'}}
|
|
<li role="presentation" class="{{ class_for 'alarm' }}"><a href="#">Alarm</a></li>
|
|
{{/if}}
|
|
|
|
<li role="presentation" class="controller_selection"> <input type="number" id="controller" name="controller" value="{{ selected_controller }}" min="1" max="99999"> <button id="switch" name="switch">Prebaci</button>
|
|
</li>
|
|
</ul>
|
|
</template>
|