{% extends "layout.html" %} {% block title %}OptiWarm - {% if is_new %}Add{% else %}Edit{% endif %} Insulation Data{% endblock %} {% block content %}
Location: {{ zone.locationid.name }}
Place Type: {{ zone.placetypeid.name }}
Status: {% if zone.active %} Active {% else %} Inactive {% endif %}
Current Temperature: {% set temp = zone.get_current_temperature() %} {% if temp is not none %} {{ "%.1f"|format(temp[0]) }}°C {% else %} No data {% endif %}