2018-05-21 10:57:22 +02:00
|
|
|
{% if forecast %}
|
|
|
|
<div class="normal medium">
|
|
|
|
<table class="small">
|
|
|
|
{% for f in forecast %}
|
|
|
|
<tr class="{% if config.colored %}colored{% endif %}">
|
|
|
|
<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">
|
2018-07-02 15:43:24 +02:00
|
|
|
{{f.maxTemperature | roundValue | unit("temperature")}}
|
2018-05-21 10:57:22 +02:00
|
|
|
</td>
|
|
|
|
<td class="align-right min-temp">
|
2018-07-02 15:43:24 +02:00
|
|
|
{{f.minTemperature | roundValue | unit("temperature")}}
|
2018-05-21 10:57:22 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</div>
|
2018-07-02 15:43:24 +02:00
|
|
|
{% else %}
|
|
|
|
{{"LOADING" | translate}}
|
2018-05-21 10:57:22 +02:00
|
|
|
{% endif %}
|
2017-10-01 13:50:15 +02:00
|
|
|
|
2018-05-21 10:57:22 +02:00
|
|
|
<!-- Unclomment the line below to see the contents of the `current` object. -->
|
|
|
|
<!-- <div style="word-wrap:break-word" class="xsmall dimmed">{{forecast | dump}}</div> -->
|