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

Fuel Types

Add Fuel Type Back to Boilers
Manage Fuel Types
{% if fuel_types %}
{% for fuel_type in fuel_types %} {% endfor %}
Name Unit Type Description Update URL Actions
{{ fuel_type.name }} {{ fuel_type.unit_name }} {{ fuel_type.description|truncate(50) if fuel_type.description else "-" }} {% if fuel_type.update_url %} {{ fuel_type.update_url|truncate(30) }} {% else %} - {% endif %}
{% else %}
No fuel types found. Add a fuel type to get started.
{% endif %}
{% endblock %}