{% extends "layout.html" %} {% block title %}OptiWarm - Boiler Type: {{ boiler_type.name }}{% endblock %} {% block content %}

{{ boiler_type.name }} (type)

New Boiler of This Type Edit Back to Boiler Types
Boiler Type Details
Name: {{ boiler_type.name }}
Fuel Type: {{ boiler_type.fueltypeid.name }}
Temperature Range: {{ boiler_type.temperature_range }}
Start Delay (🌡️zone): {% if boiler_type.low_threshold_sensor_delay %}{{ boiler_type.low_threshold_sensor_delay }} minutes{% else %}-{% endif %}
Stop delay (🌡️zone): {% if boiler_type.hi_threshold_sensor_delay %}{{ boiler_type.hi_threshold_sensor_delay }} minutes{% else %}-{% endif %}
Rated Power: {% if boiler_type.rated_power %} {{ boiler_type.rated_power }} kW {% else %} - {% endif %}
Nominal Fuel Consumption: {% if boiler_type.nominal_fuel_consumption %} {{ boiler_type.nominal_fuel_consumption }} {{ boiler_type.fueltypeid.unit_name }}/h {% else %} - {% endif %}
Start Interval: {{ boiler_type.dt_start }} minutes
Stop Interval: {{ boiler_type.dt_stop }} minutes
Description: {{ boiler_type.description or "-" }}
MQTT Configuration
Publish Temperature: {% if boiler_type.mqtt_pub_cur_temperature %} {{ boiler_type.mqtt_pub_cur_temperature }} {% else %} - {% endif %}
Publish State: {% if boiler_type.mqtt_pub_state %} {{ boiler_type.mqtt_pub_state }} {% else %} - {% endif %}
Subscribe Temperature: {% if boiler_type.mqtt_sub_temperature %} {{ boiler_type.mqtt_sub_temperature }} {% else %} - {% endif %}
Subscribe State: {% if boiler_type.mqtt_sub_state %} {{ boiler_type.mqtt_sub_state }} {% else %} - {% endif %}
Real Consumption State: {% if boiler_type.mqtt_sub_consumed %} {{ boiler_type.mqtt_sub_consumed }} {% else %} - {% endif %}
Boilers of This Type
Add Boiler
{% if boilers %}
{% for boiler in boilers %} {% endfor %}
Name Location Zone Status Actions
{{ boiler.name }} {{ boiler.locationid.name }} {% if boiler.zoneid %} {{ boiler.zoneid.name }} {% else %} - {% endif %} {% if boiler.is_active %} Active {% elif boiler.is_available %} Available {% elif boiler.is_maintenance %} Maintenance {% else %} Inactive {% endif %}
{% else %}
No boilers of this type found. Add a boiler to get started.
{% endif %}
{% endblock %}