14 lines
250 B
HTML
14 lines
250 B
HTML
|
|
<template name="log">
|
||
|
|
|
||
|
|
<div class="hello">
|
||
|
|
<h1> Podaci sa senzora: </h1>
|
||
|
|
<button id="clear_log">Očisti</button>
|
||
|
|
<ul>
|
||
|
|
{{#each sensorDataCollection}}
|
||
|
|
{{> sensorData}}
|
||
|
|
{{/each}}
|
||
|
|
</ul>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</template>
|