{% set active_project = projects|selectattr('active')|first %} {% if active_project %}

{{ active_project.emoji }} {{ active_project.name }}

{{ active_project.description }}

{{ active_project.devices|length }}
Devices
{{ active_project.modules|length }}
Modules
{{ active_project.profiles|length }}
Profiles
{{ active_project.project_type }}
Type

🌐 Devices Status

{% if active_project.devices %}
{% for device_id in active_project.devices %} {% set device = devices|selectattr('id', 'equalto', device_id)|first %} {% if device %}
{{ device.emoji }} {{ device.name }}

{{ device.host }}:{{ device.port }}

{% if device.last_connected %}

Last: {{ device.last_connected }}

{% endif %}
{% endif %} {% endfor %}
{% else %}

No devices configured for this project.

{% endif %}

🧩 Installed Modules

{% if active_project.modules %}
{% for module_id in active_project.modules %} {{ module_id }} {% endfor %}
{% else %}

No modules installed. Browse the Module Kits tab to get started!

{% endif %}
{% else %}

No Active Project

Select a project from the dropdown above to get started.

{% endif %}