diff --git a/app/views/delayed_jobs/index.html.erb b/app/views/delayed_jobs/index.html.erb
index ce87d68dd..d3716a7e9 100644
--- a/app/views/delayed_jobs/index.html.erb
+++ b/app/views/delayed_jobs/index.html.erb
@@ -1,42 +1,46 @@
-
Delayed Jobs
+
+
+
Delayed Jobs
-
-
-
- | ID |
- Name |
- <% if CurrentUser.is_admin? %>
- Handler |
- <% end %>
- Attempts |
- Priority |
- Last error |
- Run at |
- Failed at |
- Queue |
-
-
-
- <% @delayed_jobs.each do |job| %>
-
- | <%= job.id %> |
- <%= raw print_name(job) %> |
- <% if CurrentUser.is_admin? %>
- <%= raw print_handler(job) %> |
+
+
+
+ | ID |
+ Name |
+ <% if CurrentUser.is_admin? %>
+ Handler |
+ <% end %>
+ Attempts |
+ Priority |
+ Last error |
+ Run at |
+ Failed at |
+ Queue |
+
+
+
+ <% @delayed_jobs.each do |job| %>
+
+ | <%= job.id %> |
+ <%= raw print_name(job) %> |
+ <% if CurrentUser.is_admin? %>
+ <%= raw print_handler(job) %> |
+ <% end %>
+ <%= job.attempts %> |
+ <%= job.priority %> |
+ <%= job.last_error %> |
+ <%= job.run_at %> |
+ <%= job.failed_at %> |
+ <%= job.queue %> |
+
<% end %>
- <%= job.attempts %> |
- <%= job.priority %> |
- <%= job.last_error %> |
- <%= job.run_at %> |
- <%= job.failed_at %> |
- <%= job.queue %> |
-
+
+
+
+ <%= numbered_paginator(@delayed_jobs) %>
+
+ <% content_for(:page_title) do %>
+ Delayed Jobs - <%= Danbooru.config.app_name %>
<% end %>
-
-
-
-<%= numbered_paginator(@delayed_jobs) %>
-
-<% content_for(:page_title) do %>
- Delayed Jobs - <%= Danbooru.config.app_name %>
-<% end %>
+
+