{% for app in apps %}
{% if app.show_on_status_page %}
{% set display = 1 %}
{% if app.requires_bitcoin and not is_bitcoin_synced %}
{% set display = 0 %}
{% endif %}
{% if app.requires_lightning %}
{% set display = 0 %}
{% if lnd_wallet_exists and lnd_ready %}
{% set display = 1 %}
{% endif %}
{% endif %}
{% if not app.is_enabled %}
{% set display = 0 %}
{% endif %}
{% if display %}
{{ dojo_status }}
Running Containers:
{% if 'tor' in running_containers %} tor {% endif %}
{% if 'nodejs' in running_containers %} nodejs {% endif %}
{% if 'db' in running_containers %} db {% endif %}
{% if 'nginx' in running_containers %} nginx {% endif %}
{{dojo_status_log}}
BTCPay Server Status
{{ btcpayserver_status }}
Running Containers:
{% if 'generated_btcpayserver_1' in running_containers %} btcpayserver {% endif %}
{% if 'generated_nbxplorer_1' in running_containers %} nbxplorer {% endif %}
{% if 'generated_postgres_1' in running_containers %} postgres {% endif %}
{{btcpayserver_status_log}}
Mempool Status
{{ mempool_status }}
Running Containers:
{% if 'mempool_web_1' in running_containers %} mempool_web_1 {% endif %}
{% if 'mempool_db_1' in running_containers %} mempool_db_1 {% endif %}
{% if 'mempool_api_1' in running_containers %} mempool_api_1 {% endif %}