{% import 'macro/accordion.html' as accordion %} {% macro is_locked(var_name) %}{{ 'disabled' if env_locked_values[var_name] else '' }}{% endmacro %} {% macro config_badges(var_name) %} {% set current_value = env_values[var_name] %} {% set default_value = config_defaults[var_name] %} {% set is_explicitly_set = env_explicit_values[var_name] %} {% set is_locked = env_locked_values[var_name] %} {% if is_locked %} Locked {% endif %} {% if not is_explicitly_set %} Unset Default Value {% elif current_value is sameas true %} True {% elif current_value is sameas false %} False {% elif current_value == default_value %} Default: {{ default_value }} {% else %} Default: {{ default_value }} {% endif %} {% if current_value != default_value and not is_locked %} Changed {% endif %} {% endmacro %}
{% if env_file_warning %}
Configuration Persistence Warning

Configuration file location: {{ env_file_location }}

Settings changes will not persist across container restarts. To persist configuration changes, either:

See Migration Guide for details.

{% elif env_file_missing %}
No Configuration File Found

No .env file was found at data/.env. Currently using default values and Docker environment variables. If you save changes, a new configuration file will be created at data/.env (recommended location). See Migration Guide for details.

{% endif %}
Badge Legend
True Boolean setting enabled
False Boolean setting disabled
Set Custom value configured
Locked Set via Docker environment (cannot be changed)
Unset Not in .env file
Default Value Using default value
Changed Modified from default
{{ accordion.header('Live Settings', 'live-settings', 'admin', expanded=true, icon='settings-4-line', class='p-3') }}
Changes Applied On Save
Menu Visibility
Table Display
Pagination Settings
Sets
Parts
Minifigures
Problems
Client side pagination
Features & External Services
Advanced Settings
Default Ordering & Formatting
URL Patterns & Links
Images & Resources
{{ accordion.footer() }} {{ accordion.header('Static Settings', 'static-settings', 'admin', expanded=false, icon='database-2-line', class='p-3') }}
Requires Restart
Restart Required
These settings require an application restart to take effect. Values can be edited here and will be saved to the .env file.
Authentication & Security
Server Configuration
Database & Storage
API Configuration
Date & Currency Formats
Socket Configuration
{{ accordion.footer() }}