From 6c1b1130d7e66031a80bc4f1211d752710af3fcb Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Fri, 10 Aug 2018 16:21:12 +0200 Subject: [PATCH] Show all columns of log records --- app/views/admin/logs.slim | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app/views/admin/logs.slim b/app/views/admin/logs.slim index fa219e4..3a76c5b 100644 --- a/app/views/admin/logs.slim +++ b/app/views/admin/logs.slim @@ -3,6 +3,7 @@ .small-6.medium-8.large-9.cell // Paginator = render 'admin/logs/paginator' + h1 Logs .small-6.medium-4.large-3.cell // Search form @@ -16,10 +17,18 @@ tr th Timestamp th Message + th Level + th Section + th IP address + th Session token - @logs.each do |log| tr td =log.created_at td =log.message + td =log.level + td =log.section + td =log.ip_address + td =log.token - else p No logs found. Crazy.