Page MenuHomeGRNET

_job_template_details.html.erb
No OneTemporary

File Metadata

Created
Tue, Sep 8, 12:26 AM

_job_template_details.html.erb

<tr>
<td><%= link_to job.name, host_job_path(@host, job) %></td>
<td><%= job.job_type %></td>
<td><%= job.fileset.name %></td>
<td><%= job.schedule_human %></td>
<td><%= job.client_before_run_file %></td>
<td><%= job.client_after_run_file %></td>
<td><%= job.priority %></td>
<td>
<% if job.enabled? %>
<%= link_to 'Disable', toggle_enable_host_job_path(@host, job), method: :patch,
class: "btn btn-warning", role: "button" %>
<% else %>
<%= link_to 'Enable', toggle_enable_host_job_path(@host, job), method: :patch,
class: "btn btn-info", role: "button" %>
<% end %>
</td>
</tr>

Event Timeline