diff --git a/app/views/admin/jobs/index.html.erb b/app/views/admin/jobs/index.html.erb index a946c75..3658522 100644 --- a/app/views/admin/jobs/index.html.erb +++ b/app/views/admin/jobs/index.html.erb @@ -1,49 +1,49 @@
Id | Created at | Domain | Type | Args | Retries | Controls | ||
---|---|---|---|---|---|---|---|---|
<%= job.id %> | <%= job.created_at %> | <% if job.domain %><%= link_to job.domain.name, domain_path(job.domain) %> | <% else %><%= job.arguments['zone'] %> | <% end %><%= job.job_type %> | <% if job.args.size > 70 %><%= truncate(job.args, length: 70) %> | <% else %><%= job.args %> | <% end %><%= job.retries %> | <%= link_to_destroy admin_job_path(job), method: :delete, data: { confirm: 'Are you sure?' } %> |