{% extends 'Base_Template.html' %} {% block heating_cooling %} class='active' {% endblock %} {% block title %} Heating/Cooling {% endblock %} {% block body %}
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 %}
|