diff --git a/modules/default/weather/current.njk b/modules/default/weather/current.njk index 56f8a91b..b5e4a04f 100644 --- a/modules/default/weather/current.njk +++ b/modules/default/weather/current.njk @@ -1,7 +1,6 @@ {# TODO: - Show Humidity - - Show Units _ Show Indoor Temperature _ Show Indoor Humidity #} @@ -22,7 +21,7 @@ {% if config.showWindDirectionAsArrow %} {% else %} - {{current.cardinalWindDirection()}} + {{current.cardinalWindDirection() | translate}} {% endif %}   @@ -40,7 +39,13 @@ {% endif %}
- {{current.temperature | round(0 if config.roundTemp else 1)}}°
+ + {{current.temperature | round(0 if config.roundTemp else 1)}}°{% if config.degreeLabel %} + {% if config.units == "metric" %}C{% endif %} + {% if config.units == "imperial" %}F{% endif %} + {% if config.units == "default" %}K{% endif %} + {% endif %} + {% endif %}