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

โš™๏ธ Settings

Configure WebUI preferences and backend connections

General

Backend Connection

Running in virtualized mode. Commands are simulated locally using templates.

Configure connection to OpenWrt device via HTTP/RPC:

Password is stored in data/settings.json

SSH backend is not yet implemented. Please use HTTP or Virtualized backend.

Preferences

๐ŸŒ Device Management

Manage multiple OpenWrt devices and switch between them

{% if devices %} {% for device in devices %}
{{ device.emoji }}
{{ device.name }} {% if device.description %}
{{ device.description }}
{% endif %}
{{ device.host }}:{{ device.port }}
{% if device.active %} โœ“ Active {% endif %} {{ device.connection_type }}
{% endfor %} {% else %}

No devices configured yet. Click "Add Device" to get started.

{% endif %}

System Information

Backend:
{{ settings.backend_type }}
Theme:
{{ settings.theme }}
Advanced Mode:
{{ "Enabled" if settings.advanced_mode else "Disabled" }}
{% endblock %}