Page MenuHomeGRNET

show.html.erb
No OneTemporary

File Metadata

Created
Sat, May 16, 11:52 PM

show.html.erb

<div class="right">
<%= link_to 'Edit', edit_host_job_path(@host, @job),
class: "btn btn-primary", role: "button" %>
<%= link_to 'Delete', host_job_path(@host, @job),
method: :delete, data: { confirm: 'This will delete the job' },
class: "btn btn-danger", role: "button" %>
</div>
<div class="row">
<div class="col-xs-6">
<div class="panel panel-default">
<div class="panel-heading">
<h1>"<%= @job.name %>" Job Template</h1>
</div>
<div class="row">
<%= render partial: 'job_details' %>
</div>
</div>
<div class="col-xs-2 col-xs-offset-4 right">
<%= link_to 'Back to host', host_path(@host),
class: "btn btn-success", role: "button" %>
</div>
</div>
</div>

Event Timeline