summaryrefslogtreecommitdiff
path: root/design/templates/human_weather.txt
blob: 677a690c07e90ea848e93b6dcf3ef649e871a64e (plain)
1
2
3
4
5
6
7
{% load f_to_c %}
Today the high temperature was {{object.temp_max}}F/{{object.temp_max|f_to_c}}C and the low was {{object.temp_min}}F/{{object.temp_min|f_to_c}}C. The mean temp was {{object.temp_mean}}F/{{object.temp_mean|f_to_c}}C. The mean wind speed was {{object.wind_mean}}mph with gusts up to {{object.wind_max}}mph.
{%if object.rain%}It rained {{object.rain_amount}} inches.{%endif%}
{%if object.snow%}It snowed {{object.snow_amount}} inches.{%endif%}
{%if object.hail%}It hailed.{%endif%}
{%if object.thunder%}It thundered {%endif%}
{%if object.fog%}There was fog{%endif%}