Sha256: a4b32f832742efdf33a316b84fed983764e12fb96b57fdc9063f6f5ed9ec451b

Contents?: true

Size: 866 Bytes

Versions: 3

Compression:

Stored size: 866 Bytes

Contents

<% job_invocation = task_group.job_invocation %>
<table class='table table-condensed'>
  <tr>
    <th>ID</th>
    <td><%= link_to(job_invocation.id, job_invocation) %></td>
  </tr>
  <tr>
    <th>Job Name</th>
    <td><%= job_invocation.job_category %></td>
  </tr>
  <tr>
    <th>Status</th>
    <td><%= link_to_invocation_task_if_authorized(job_invocation) %></td>
  </tr>
  <tr>
    <th>Succeeded</th>
    <td><%= invocation_count(job_invocation, :output_key => :success_count) %></td>
  </tr>
  <tr>
    <th>Failed</th>
    <td><%= invocation_count(job_invocation, :output_key => :failed_count) %></td>
  </tr>
  <tr>
    <th>Pending</th>
    <td><%= invocation_count(job_invocation, :output_key => :pending_count) %></td>
  </tr>
  <tr>
    <th>Total hosts</th>
    <td><%= invocation_count(job_invocation, :output_key => :total_count) %></td>
  </tr>
</table>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
foreman_remote_execution-0.2.3 app/views/job_invocation_task_groups/_job_invocation_task_group.html.erb
foreman_remote_execution-0.2.2 app/views/job_invocation_task_groups/_job_invocation_task_group.html.erb
foreman_remote_execution-0.2.1 app/views/job_invocation_task_groups/_job_invocation_task_group.html.erb