about summary refs log tree commit diff
path: root/app/views
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2021-04-03 14:12:30 +0200
committerStarfall <us@starfall.systems>2021-04-11 12:17:56 -0500
commit9d47138945268b49df06ac5ecfeb651983f17068 (patch)
treec716318776d350bc238f7f2bf97d9cbfaacc7876 /app/views
parentec2bab4b78d638a5a8c6a6a525b176776685f59c (diff)
Add system checks to dashboard in admin UI (#15989)
Diffstat (limited to 'app/views')
-rw-r--r--app/views/admin/dashboard/index.html.haml8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/views/admin/dashboard/index.html.haml b/app/views/admin/dashboard/index.html.haml
index 249e12563..f2f0c813d 100644
--- a/app/views/admin/dashboard/index.html.haml
+++ b/app/views/admin/dashboard/index.html.haml
@@ -1,6 +1,14 @@
 - content_for :page_title do
   = t('admin.dashboard.title')
 
+- unless @system_checks.empty?
+  .flash-message-stack
+    - @system_checks.each do |message|
+      .flash-message.warning
+        = t("admin.system_checks.#{message.key}.message_html", message.value ? { value: content_tag(:strong, message.value) } : {})
+        - if message.action
+          = link_to t("admin.system_checks.#{message.key}.action"), message.action
+
 .dashboard__counters
   %div
     = link_to admin_accounts_url(local: 1, recent: 1) do