From 9404eeafa153c5cab37208ece3a70f75045e02ce Mon Sep 17 00:00:00 2001 From: evazion Date: Thu, 4 May 2017 23:19:22 -0500 Subject: [PATCH] /delayed_jobs: reorganize columns; fix column sizes. --- app/views/delayed_jobs/index.html.erb | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/app/views/delayed_jobs/index.html.erb b/app/views/delayed_jobs/index.html.erb index d3716a7e9..3aab89c15 100644 --- a/app/views/delayed_jobs/index.html.erb +++ b/app/views/delayed_jobs/index.html.erb @@ -2,36 +2,32 @@

Delayed Jobs

- +
- + <% if CurrentUser.is_admin? %> <% end %> - - - + <% @delayed_jobs.each do |job| %> - + <% if CurrentUser.is_admin? %> - + <% end %> - - - - - + + + <% end %>
IDQueue NameHandlerAttemptsPriority Last errorRun at Failed atQueueRun at
<%= job.id %><%= job.queue %> <%= raw print_name(job) %><%= raw print_handler(job) %><%= raw print_handler(job) %><%= job.attempts %><%= job.priority %><%= job.last_error %><%= job.run_at %><%= job.failed_at %><%= job.queue %><%= job.last_error %><%= time_ago_in_words_tagged(job.failed_at) if job.failed_at %><%= time_ago_in_words_tagged(job.run_at) %>