15 lines
439 B
HTML
15 lines
439 B
HTML
<template name="alarm">
|
|
|
|
<div class="hello">
|
|
<h1> Temperatura </h1>
|
|
<div class="jumbotron text-center center-block" >
|
|
{{#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>
|