|
<%= job.id %>
|
<% if job.pdf.attached? %>
<%= image_tag(url_for(job.pdf.blob.preview(resize_to_limit: [100, 100])), class: "shadow") %>
<%#= image_tag job.pdf.preview(resize_to_limit: [50, 50]), class: "mx-auto" %>
<% end %>
|
<%= job.costumer_fullname %>
|
<% if job.pdf.attached? %>
<%= truncate(job.pdf.filename.to_s, length: 45) %>
<% end %>
|
<%= job.number_of_plans_a0 %>
|
<%= job.number_of_plans_a1 %>
|
<%= job.number_of_plans_a2 %>
|
<%= job.number_of_plans_a3 %>
|
<%= job.costum_qm_plan.round(2) %> m²
|
<%= job.cost.round(2) %> €
|
<%= job.status %>
|
<% if job.open? %>
<%= button_to icon("x-circle", class: "text-hsrm-red size-8 inline", title: "Abbrechen"), cancel_job_path(job), method: :patch, form: {data: {turbo_confirm: 'Den Plottauftrag wirklich abbrechen?'}}, form_class: "inline" %>
<% else %>
<%= icon("x-circle", class: "text-hsrm-gray text-opacity-50 size-8 inline drop-shadow", title: "Kann nicht mehr abgebrochen werden") %>
<% end %>
|