{% extends "base.html" %} {% block title %}Configure Entities – {{ board.name }}{% endblock %} {% block content %}

Configure Entities

Set a type, custom name, and optional icon override for each relay and input. The type determines the icon, status colors, and state labels shown everywhere.

Relay Outputs
{% for n in range(1, board.num_relays + 1) %} {% set e = board.get_relay_entity(n) %}
Relay {{ n }}
Leave blank to use type default
Entity type
{% for tkey, tdef in relay_types.items() %} {% endfor %}
Custom icon override
{% for icon_cls, icon_name in icon_palette %} {% endfor %}
{% endfor %}
Digital Inputs
{% for n in range(1, board.num_inputs + 1) %} {% set e = board.get_input_entity(n) %}
Input {{ n }}
Leave blank to use type default
Entity type
{% for tkey, tdef in input_types.items() %} {% endfor %}
Custom icon override
{% for icon_cls, icon_name in icon_palette %} {% endfor %}
{% endfor %}
Cancel
{% endblock %} {% block scripts %} {% endblock %}