{% extends theme_template %} {% block title %}Components - SecuBox WebUI{% endblock %} {% block content %}

🎨 Component Registry

Reusable UI components from installed modules

{% if modules %}
All Modules {% for module in modules %} {{ module.name }} {% endfor %}
{% endif %} {% if components %}
{% for component in components %}

{{ component.emoji }} {{ component.name }}

{{ component.component_type }}

Module: {{ component.module_id }}

{{ component.description }}

{% if component.tags %}
{% for tag in component.tags %} #{{ tag }} {% endfor %}
{% endif %}
{% if component.preview_url %} {% endif %}
{% endfor %}
{% else %}

No components available. Install modules to see their UI components.

{% endif %}
{% endblock %}