From e42d53d0697c56954d1c0226ecedf2c37cd590ac Mon Sep 17 00:00:00 2001 From: szaimen Date: Sun, 9 Jan 2022 17:58:56 +0100 Subject: [PATCH] improve up-to-date-message Signed-off-by: szaimen --- php/templates/containers.twig | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/php/templates/containers.twig b/php/templates/containers.twig index 85e1d716..afd31f7d 100644 --- a/php/templates/containers.twig +++ b/php/templates/containers.twig @@ -101,7 +101,11 @@ {% if has_update_available == true %} ⚠ Container updates are available. Click on `Stop Containers` and `Start Containers` to update them. You should consider creating a backup first. The mastercontainer gets updated with a different procedure though and has its own update button which is visible if an update is available.

{% else %} - You are up-to-date.

+ {% if is_mastercontainer_update_available == false %} + Your containers are up-to-date.

+ {% else %} + Your containers are up-to-date. (Except the mastercontainer. See the section below.)

+ {% endif %} {% endif %} {% endif %}