From f853cf137b8ec8430d295081e3b59cc00546a222 Mon Sep 17 00:00:00 2001 From: Yasen Pramatarov Date: Thu, 20 Nov 2025 12:19:18 +0200 Subject: [PATCH] Reorganizes dashboard --- app/pages/dashboard.php | 6 +++--- app/templates/{widget.php => dashboard-conferences.php} | 0 app/templates/{widget-monthly.php => dashboard-monthly.php} | 0 3 files changed, 3 insertions(+), 3 deletions(-) rename app/templates/{widget.php => dashboard-conferences.php} (100%) rename app/templates/{widget-monthly.php => dashboard-monthly.php} (100%) diff --git a/app/pages/dashboard.php b/app/pages/dashboard.php index df28955..db691b2 100644 --- a/app/pages/dashboard.php +++ b/app/pages/dashboard.php @@ -92,7 +92,7 @@ if ($response['db'] === null) { // display the widget - include '../app/templates/widget-monthly.php'; + include '../app/templates/dashboard-monthly.php'; /** @@ -154,7 +154,7 @@ if ($response['db'] === null) { $widget['pagination'] = false; // display the widget - include '../app/templates/widget.php'; + include '../app/templates/dashboard-conferences.php'; /** @@ -224,6 +224,6 @@ if ($response['db'] === null) { } // display the widget - include '../app/templates/widget.php'; + include '../app/templates/dashboard-conferences.php'; } diff --git a/app/templates/widget.php b/app/templates/dashboard-conferences.php similarity index 100% rename from app/templates/widget.php rename to app/templates/dashboard-conferences.php diff --git a/app/templates/widget-monthly.php b/app/templates/dashboard-monthly.php similarity index 100% rename from app/templates/widget-monthly.php rename to app/templates/dashboard-monthly.php