diff --git a/modules/btcpay/views/templates/admin/configure.html.twig b/modules/btcpay/views/templates/admin/configure.html.twig index f6f72d7..0939534 100644 --- a/modules/btcpay/views/templates/admin/configure.html.twig +++ b/modules/btcpay/views/templates/admin/configure.html.twig @@ -143,8 +143,12 @@ {% set webhook = client.webhook().getCurrent(storeId, webhookId) %}
{{ 'Webhook ID'|trans({}, 'Modules.Btcpay.Admin') }}
- {% if webhook is not null and webhook.enabled is defined %} -
{{ webhook.id }}
+ {% if webhook is not null and webhook.enabled is defined and webhook.enabled%} +
{{ webhook.id }}
+ {% elseif webhook is not null and webhook.enabled is defined and not webhook.enabled%} +
{{ webhook.id }} ⚠️
+ {% else %} + Webhook is missing, retry the setup process {% endif %}
{{ 'Node fully synced'|trans({}, 'Modules.Btcpay.Admin') }}
@@ -152,7 +156,7 @@ {% if serverInfo.fullySynced %} Yes {% else %} - No + No ⚠️ {% endif %}