Files
plottservice/app/views/operator/jobs/edit.html.erb
2024-09-11 11:25:51 +02:00

11 lines
403 B
Plaintext

<div id="<%= dom_id @job %>" class="flex flex-row space-x-4 shadow">
<div>
<embed type="application/pdf" src="<%= url_for(@job.pdf) %>#view=Fit" width="700px" height="900px" class="" />
</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>