{% extends "base.html" %} {% block title %}{{ module_name }} (Disabled){% endblock %} {% block breadcrumb %}{{ module_name }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
{# ── Blurred placeholder content (gives context about what the page would show) ── #} {# ── Frosted-glass overlay ── #}
{# Icon #}
{# Title #}

{{ module_name }}

{# Badge #}
Module Disabled
{# Description #}

{{ description }}
Enable this module in your workspace.py configuration to activate it.

{# Builder syntax code block #}
workspace.py
Recommended
# Add to your Integration.admin() call:
{% if 'AdminAudit' in builder_hint %} audit=(
    Integration.AdminAudit()
    .enable()
), {% elif 'AdminMonitoring' in builder_hint %} monitoring=(
    Integration.AdminMonitoring()
    .enable()
    .metrics("cpu", "memory", "system")
), {% else %} modules=(
    Integration.AdminModules()
    .{{ builder_hint.split('.')[-1] }}
), {% endif %}
{# Or divider #}
or use flat syntax
{# Flat syntax hint #}
Integration.admin( {{ flat_hint.split('=')[0] }}=True )
{# Actions #}
Dashboard
{% endblock %}