20 lines
695 B
HTML
20 lines
695 B
HTML
<template name="alarm">
|
|
|
|
<div class="hello">
|
|
<div class="jumbotron text-center center-block" >
|
|
{{#with state}}
|
|
{{#if alarmTriggered}}
|
|
<img src="/images/alarm.gif" class="img-responsive center-block" id="alarm_image" />
|
|
<button id="stop_alarm" class="btn btn-danger"> <i class="fa fa-ban"></i> Prekini </button>
|
|
{{/if}}
|
|
{{/with}}
|
|
{{#with last_reading}}
|
|
<div class="huge_text"> {{ all_temperatures }}</div>
|
|
<div>{{pretty_time created_at}}</div>
|
|
{{/with}}
|
|
<button id="run_alarm_settings" class="btn btn-default"> <i class="fa fa-wrench"></i> Podešavanje </button>
|
|
</div>
|
|
|
|
</div>
|
|
</template>
|