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

Boiler Management

Boilers Add
{% if boilers %} {% for boiler in boilers[:5] %}
{{ boiler.name }} {{ boiler.boilertypeid.name }}
{% if boiler.is_active %} Active {% elif not boiler.is_available %} Maintenance {% else %} Inactive {% endif %}
{% endfor %} {% if boilers|length > 5 %} View all {{ boilers|length }} boilers {% endif %} {% else %}
No boilers found
{% endif %}
Boiler Types Add
{% if boiler_types %} {% for boiler_type in boiler_types[:5] %}
{{ boiler_type.name }} Fuel: {{ boiler_type.fueltypeid.name }}
{{ boiler_type.temperature_range }}
{% endfor %} {% if boiler_types|length > 5 %} View all {{ boiler_types|length }} boiler types {% endif %} {% else %}
No boiler types found
{% endif %}
{% endblock %}