{% extends "layout.html" %} {% block title %}OptiWarm - Boiler Type: {{ boiler_type.name }}{% endblock %} {% block content %}
| 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 "-" }} |
| 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 %}
|
| Name | Location | Zone | Status | Actions |
|---|---|---|---|---|
| {{ boiler.name }} | {{ boiler.locationid.name }} | {% if boiler.zoneid %} {{ boiler.zoneid.name }} {% else %} - {% endif %} | {% if boiler.is_active %} Active {% elif not boiler.is_available %} Maintenance {% else %} Inactive {% endif %} |