Warming Events
Add Warming Event
{% if warm_events %}
{% for event in warm_events %} {% endfor %}
Date Rule Type Time Status Actions
{{ event.day_exec.strftime('%Y-%m-%d') }} {{ event.warm_ruletypeid.name }} {% if event.time_from and (event.time_from.hour + event.time_from.minute) > 0 or event.time_to and (event.time_to.hour + event.time_to.minute) > 0 %} {% if event.time_from %} {{ event.time_from.strftime('%H:%M') }} {% else %} 00:00 {% endif %} - {% if event.time_to %} {{ event.time_to.strftime('%H:%M') }} {% else %} 00:00 {% endif %} {% else %} All day {% endif %} {% if event.is_active %} Active {% else %} Inactive {% endif %}
{% else %}
No warming events found for this zone. Add a warming event to schedule heating for specific dates.
{% endif %}