{% extends 'Base_Template.html' %} {% block home %} class='active' {% endblock %} {% block title %} Home {% endblock %} {% block body %}
Temperature
Average temperature: {{ avg_temperature }} °C
|
Heating/Cooling
Element status:
{% if automatic_status ==0 %}
AUTO
{% elif element_power_status==0 %}
OFF
{% elif element_power_status==1 %}
{% if element_heat_cool_status==0 %}
HEATING
{% elif element_heat_cool_status==1 %}
COOLING
{% endif %}
{% endif %}
|