{% extends "base.html" %} {% block content %}

{{ community_name }}


Monthly Temperatures

{% for temp in temps %} {% endfor %}
Year
 
January
°C
February
°C
March
°C
April
°C
May
°C
June
°C
July
°C
August
°C
September
°C
October
°C
November
°C
December
°C
{{ temp[0]|int }} {{ temp[1]|round(2) }} {{ temp[2]|round(2) }} {{ temp[3]|round(2) }} {{ temp[4]|round(2) }} {{ temp[5]|round(2) }} {{ temp[6]|round(2) }} {{ temp[7]|round(2) }} {{ temp[8]|round(2) }} {{ temp[9]|round(2) }} {{ temp[10]|round(2) }} {{ temp[11]|round(2) }} {{ temp[12]|round(2) }}
{% endblock %}