{% extends "layout.html" %} {% block title %}OptiWarm - Boilers{% endblock %} {% block content %}

Boilers

Add Boiler Back to Dashboard
Manage Boilers
{% if boilers %}
{% for boiler in boilers %} {% endfor %}
Name Type Location Zone Temperature Range Rated Power Fuel Consumption Status Actions
{{ boiler.name }} {{ boiler.boilertypeid.name }} {{ boiler.locationid.name }} {% if boiler.zoneid %} {{ boiler.zoneid.name }} {% else %} - {% endif %} {% if boiler.effective_temperature_min is not none or boiler.effective_temperature_max is not none %} {% if boiler.effective_temperature_min is not none %}{{ boiler.effective_temperature_min }}°C{% else %}*{% endif %} - {% if boiler.effective_temperature_max is not none %}{{ boiler.effective_temperature_max }}°C{% else %}*{% endif %} {% else %} - {% endif %} {% if boiler.effective_rated_power is not none %} {{ boiler.effective_rated_power }} kW {% else %} - {% endif %} {% if boiler.effective_nominal_fuel_consumption is not none %} {{ boiler.effective_nominal_fuel_consumption }} {{ boiler.boilertypeid.fueltypeid.unit_name }}/h {% else %} - {% endif %} {% if boiler.is_active %} Active {% elif boiler.is_available %} Available {% elif boiler.is_maintenance %} Maintenance {% else %} Inactive {% endif %}
{% else %}
No boilers found. Add a boiler to get started.
{% endif %}
{% endblock %}