Files
plottservice/app/views/operator/jobs/edit.html.erb

19 lines
523 B
Plaintext

<div id="<%= dom_id @job %>" class="flex flex-row space-x-4 shadow">
<div>
<% if @job.pdf.attached? && @job.pdf.previewable? %>
<embed
type="application/pdf"
src="<%= url_for(@job.pdf) %> #view=Fit"
width="700px"
height="900px"
class=""
/>
<% end %>
</div>
<div>
<%= render "form", job: @job %>
<%= link_to "Show this job", operator_job_path(@job), class: "btn" %>
<%= link_to "Back to jobs", operator_jobs_path, class: "btn" %>
</div>
</div>