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

Boiler Types

Add Boiler Type Back to Boilers
Manage Boiler Types
{% if boiler_types %}
{% for boiler_type in boiler_types %} {% endfor %}
Name Fuel Type Temperature Range Description Actions
{{ boiler_type.name }} {{ boiler_type.fueltypeid.name }} {{ boiler_type.temperature_range }} {{ boiler_type.description|truncate(50) if boiler_type.description else "-" }}
{% else %}
No boiler types found. Add a boiler type to get started.
{% endif %}
{% endblock %}