|
<%= job.id %>
|
<%= job.fullname %> |
<% if job.pdf.attached? %>
<%= job.pdf.filename %><%=number_to_human_size job.pdf.blob.byte_size%>
<% end %>
|
<%= job.number_of_plans_a0 %> |
<%= job.number_of_plans_a1 %> |
<%= job.number_of_plans_a2 %> |
<%= job.number_of_plans_a3 %> |
<%= job.status %>
|
<%= link_to "edit", edit_job_url(job), class: "p-1.5 ml-2 rounded-lg bg-gray-100 font-medium" %>
<% if job.able_to_cancel? %>
<%= button_to "cancel", cancel_job_url(job), method: :patch, class: "p-1.5 ml-2 rounded-lg bg-gray-100 font-medium" %>
<% end %>
|