{%endblock%}
{%block script%}
{%include 'therm/context.js'%}
var ti
function refresh_on(){
ti = window.setInterval(read_heat_status, 2000)
}
function refresh_off(){
clearInterval(ti)
}
{%endblock%}
{%block document_ready%}
read_heat_status()
refresh_on()
{%endblock%}