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

Office - Locations Overview

Add Location
{% if locations %}
{% for location in locations %}
{{ location.name }}
{% if location.description %} {{ location.description[:80] }}{% if location.description|length > 80 %}...{% endif %} {% else %} No description {% endif %}
Total Volume {{ location.total_volume }} m³
Zones {{ location.zones_count }}
{% if location.fuel_types %}
Fuel Types
{% for fuel in location.fuel_types %} {{ fuel }} {% endfor %}
{% endif %}
{{ location.active_boilers }} / {{ location.total_boilers }}
Boilers Active
{% endfor %}
{% else %}

No Locations Yet

Create your first location to get started with OptiWarm.

Add Your First Location
{% endif %} {% endblock %}