11 lines
403 B
Plaintext
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>
|