{% extends "admin/index.html" %} {% block admin_content %}
Current system environment and database connection details.
| Setting | Value |
|---|---|
| Database Type | {% if 'sqlite' in config.database_url %} SQLite {% elif 'postgresql' in config.database_url %} PostgreSQL {% else %} {{ config.database_type }} {% endif %} |
| Connection URL | {{ config.database_url_masked }} |
| Database Host/Path | {{ config.database_host }} |
| Environment | {% if config.debug %} Debug Mode {% else %} Production {% endif %} |