indoor data, new filter, small cleanup

This commit is contained in:
fewieden
2018-07-02 15:43:24 +02:00
parent 66ceafd010
commit 0fe79b5288
3 changed files with 56 additions and 13 deletions

View File

@@ -6,15 +6,17 @@
<td class="day">{{f.day}}</td>
<td class="bright weather-icon"><span class="wi weathericon {{f.icon}}"></span></td>
<td class="align-right bright max-temp">
{{f.maxTemperature | round(0 if config.roundTemp else 1) | unit("temperature")}}
{{f.maxTemperature | roundValue | unit("temperature")}}
</td>
<td class="align-right min-temp">
{{f.minTemperature | round(0 if config.roundTemp else 1) | unit("temperature")}}
{{f.minTemperature | roundValue | unit("temperature")}}
</td>
</tr>
{% endfor %}
</table>
</div>
{% else %}
{{"LOADING" | translate}}
{% endif %}
<!-- Unclomment the line below to see the contents of the `current` object. -->