{% extends "base.html" %} {% block title %}System Status{% endblock %} {% block content %}

System Status

This dashboard shows the status of all configured integrations and targets.

{% for name, provider in providers.items() %}
{% if provider.icon == "mail" %} {% elif provider.icon == "cloud" %} {% elif provider.icon == "dropbox" %} {% elif provider.icon == "file-text" %} {% elif provider.icon == "server" %} {% elif provider.icon == "database" %} {% elif provider.icon == "hard-drive" %} {% elif provider.icon == "globe" %} {% elif provider.icon == "google" %} {% elif provider.icon == "microsoft" %} {% elif provider.icon == "activity" %} {% elif provider.icon == "ftp" %} {% else %} {% endif %}

{{ name }}

{% if provider.configured %} Configured {% else %} Not Configured {% endif %}

{{ provider.description }}

{% if provider.url and provider.configured %} {% endif %}
{% if provider.configured %} Active {% else %} Inactive {% endif %}
{% endfor %}

Configuration Settings

For more detailed configuration settings and environment variables, check the environment debug page.

{% endblock %}