This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
augie/webapp/lib/augie_web/live/temperature_live.html.leex
2020-05-02 19:30:23 +12:00

21 lines
507 B
Text

<div class="card">
<div class="card-divider">
<h4>Temperature</h4>
</div>
<div class="card-section">
<%= if @temperature do %>
<div class="grid-x">
<div class="cell auto"><strong>Temperature</strong></div>
<div class="cell auto text-right">
<%= if @temperature do %>
<%= Float.round(@temperature, 2) %>&deg; C
<% else %>
-
<% end %>
</div>
</div>
<% else %>
<p>No data available</p>
<% end %>
</div>
</div>