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

πŸ“¦ Configuration Profiles

Bundled module configurations and preset collections

{% if profiles %}
{% for profile in profiles %}

{{ profile.emoji }} {{ profile.name }}

by {{ profile.author }}

{% if profile.active %} βœ“ Active {% endif %} Priority: {{ profile.priority }}

{{ profile.description }}

Modules ({{ profile.modules|length }}) {% if profile.modules %}
    {% for module_id in profile.modules[:5] %}
  • {{ module_id }}
  • {% endfor %} {% if profile.modules|length > 5 %}
  • ... and {{ profile.modules|length - 5 }} more
  • {% endif %}
{% endif %}
Presets ({{ profile.presets|length }}) {% if profile.presets %}
    {% for preset_id in profile.presets[:5] %}
  • {{ preset_id }}
  • {% endfor %} {% if profile.presets|length > 5 %}
  • ... and {{ profile.presets|length - 5 }} more
  • {% endif %}
{% endif %}
{% if profile.tags %}
{% for tag in profile.tags %} #{{ tag }} {% endfor %}
{% endif %}
{% endfor %}
{% else %}

No profiles configured. Create a profile to bundle modules and presets together.

{% endif %}
{% endblock %}