{% extends 'base.html' %} {% block title %}Debug - Environment Status{% endblock %} {% block content %}
{% if not debug_mode %}

🚫 Debug page disabled in production

This debug page is only available in development mode.

{% else %}

🔧 Environment Debug Page

Environment Variables Status:

{{ env_status|safe }}

💡 Troubleshooting Tips:

🔍 Database Status:

Database Connection: {{ db_status.status }}

User Count: {{ user_count }}

Agent Count: {{ agent_count }}

{% endif %}
{% endblock %}