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

Boiler Management

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 %}