mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-08-24 22:13:33 +00:00
indoor data, new filter, small cleanup
This commit is contained in:
@@ -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. -->
|
||||
|
Reference in New Issue
Block a user