{% extends "base.html" %} {% block title %}Edit Configuration - Admin - Anguis{% endblock %} {% block content %}

Edit System Configuration

Modify system settings (config.yaml)

{% if config_path %}

File: {{ config_path }}

{% endif %}
Cancel
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
Configuration Changes
  • Invalid YAML syntax will be rejected before saving
  • A backup will be created automatically (config.yaml.backup)
  • Application restart required for changes to take effect
  • Incorrect configuration may prevent application startup
Configuration Editor
{% if is_new %} New File {% endif %}
YAML Syntax Help
Indentation
parent:
  child: value
  nested:
    deep: value
Lists
items:
  - first
  - second
  - third
Types
string: "text"
number: 123
boolean: true
null: null
{% endblock %}