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

System Configuration

View and manage system settings (config.yaml)

{% if config_path %}

File: {{ config_path }}

{% endif %}
Back to Admin Edit Config
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
Raw Configuration (YAML)
{{ config_text }}
Structured View
{% if config_dict %}
{% else %}

Unable to parse configuration

{% endif %}
{% endblock %}