aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/health_checks/index.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/health_checks/index.html.erb')
-rw-r--r--app/views/health_checks/index.html.erb12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/views/health_checks/index.html.erb b/app/views/health_checks/index.html.erb
new file mode 100644
index 000000000..67b1050a9
--- /dev/null
+++ b/app/views/health_checks/index.html.erb
@@ -0,0 +1,12 @@
+<h1>Health Checks</h1>
+
+<div class="checks">
+ <% @health_checks.each do |check| %>
+ <div class="check">
+ <ul>
+ <li>Message: <%= check_status(check) %></li>
+ <li>OK? <%= check.ok? %></li>
+ </ul>
+ </div>
+ <% end %>
+</div>