Merge pull request #2568 from Crazylegstoo/envcanada

This commit is contained in:
Michael Teeuw
2021-05-29 14:01:04 +02:00
committed by GitHub
5 changed files with 679 additions and 3 deletions

View File

@@ -20,9 +20,15 @@
{{ f.minTemperature | roundValue | unit("temperature") | decimalSymbol }}
</td>
{% if config.showPrecipitationAmount %}
<td class="align-right bright precipitation">
{{ f.precipitation | unit("precip") }}
</td>
{% if f.precipitationUnits %}
<td class="align-right bright precipitation">
{{ f.precipitation }}{{ f.precipitationUnits }}
</td>
{% else %}
<td class="align-right bright precipitation">
{{ f.precipitation | unit("precip") }}
</td>
{% endif %}
{% endif %}
</tr>
{% set currentStep = currentStep + 1 %}