{% extends "admin/index.html" %} {% block admin_content %}
System Configuration Status

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 %}
{% if 'sqlite' in config.database_url %} Running in portable SQLite mode. To switch to PostgreSQL, please refer to the migration guide. {% else %} Running in PostgreSQL mode. Database is hosted at {{ config.database_host }}. {% endif %}
{% endblock %}