From 04c761142de7bcc6661069e844b3140e26c583b2 Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Mon, 25 Aug 2025 10:18:05 +0100 Subject: [PATCH] alignment Signed-off-by: Andy Miller --- .../partials/tools-scheduler.html.twig | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/themes/grav/templates/partials/tools-scheduler.html.twig b/themes/grav/templates/partials/tools-scheduler.html.twig index 820e1eaf..84811937 100644 --- a/themes/grav/templates/partials/tools-scheduler.html.twig +++ b/themes/grav/templates/partials/tools-scheduler.html.twig @@ -10,20 +10,26 @@ {# We have at least one active trigger method #} {% if 'webhook' in active_triggers and 'cron' not in active_triggers %} {# Webhook only mode #} -
- Webhook Active - Scheduler is ready to receive webhook triggers +
+
+ Webhook Active - Scheduler is ready to receive webhook triggers +
{{ "PLUGIN_ADMIN.SCHEDULER_INSTALL_INSTRUCTIONS"|t }}
{% elseif 'cron' in active_triggers and 'webhook' in active_triggers %} {# Both cron and webhook #} -
- Cron & Webhook Active - Scheduler is running via cron and accepts webhook triggers +
+
+ Cron & Webhook Active - Scheduler is running via cron and accepts webhook triggers +
{{ "PLUGIN_ADMIN.SCHEDULER_INSTALL_INSTRUCTIONS"|t }}
{% elseif 'cron' in active_triggers %} {# Cron only #} -
- {{ "PLUGIN_ADMIN.SCHEDULER_INSTALLED_READY"|t }} +
+
+ {{ "PLUGIN_ADMIN.SCHEDULER_INSTALLED_READY"|t }} +
{{ "PLUGIN_ADMIN.SCHEDULER_INSTALL_INSTRUCTIONS"|t }}
{% endif %}