diff --git a/php/public/index.php b/php/public/index.php
index 8e5cf6fa..fbe79a82 100644
--- a/php/public/index.php
+++ b/php/public/index.php
@@ -88,6 +88,7 @@ $app->get('/containers', function ($request, $response, $args) use ($container)
'has_update_available' => $dockerActionManger->isAnyUpdateAvailable(),
'last_backup_time' => $configurationManager->GetLastBackupTime(),
'backup_times' => $configurationManager->GetBackupTimes(),
+ 'current_channel' => $dockerActionManger->GetCurrentChannel(),
]);
})->setName('profile');
$app->get('/login', function ($request, $response, $args) use ($container) {
diff --git a/php/templates/containers.twig b/php/templates/containers.twig
index 6db212e1..3875d266 100644
--- a/php/templates/containers.twig
+++ b/php/templates/containers.twig
@@ -19,6 +19,8 @@
Nextcloud AIO Beta v0.6.0
This is beta software and not production ready.
+ You are currently running the {{ current_channel }} channel.
+
{% set isAnyRunning = false %}
{% set isWatchtowerRunning = false %}
{% set isBackupContainerRunning = false %}
@@ -170,7 +172,14 @@
{% else %}
- ⚠ A mastercontainer update is available. Please stop your containers in order to be able to update the mastercontainer.
+ ⚠ A mastercontainer update is available. Please stop your containers in order to be able to update the mastercontainer.
+ {% endif %}
+ {% if current_channel starts with 'latest' %}
+ You can find the changelog here
+ {% elseif current_channel starts with 'beta' %}
+ You can find the changelog here
+ {% elseif current_channel starts with 'develop' %}
+ You can find all changes here