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

Place Types

Add Place Type
{% if place_types %}
{% for place_type in place_types %} {% endfor %}
Name Description Warming Rule Type Zones Actions
{{ place_type.name }} {{ place_type.description|truncate(50) if place_type.description else "-" }} {% for rule_type in place_type.warming_rule_types %} {{ rule_type.name }} {% else %} - {% endfor %} {{ place_type.zones|length }}
{% else %} {% endif %}
About Place Types

Place types are used to categorize different areas with specific heating requirements:

Each place type can have customized heating rules that define temperature thresholds and schedules.

{% endblock %}