Sha256: b1f7211958b915295a34c0ceebbb48c0b4552b03006347c1651388184ec0d1e2

Contents?: true

Size: 1.36 KB

Versions: 14

Compression:

Stored size: 1.36 KB

Contents

<% title _('Job invocations') %>

<% title_actions(job_invocations_buttons) %>

<table class="<%= table_css_classes('table-condensed table-fixed') %>">
  <thead>
    <tr>
      <th><%= sort :description, :as => _('Description') %></th>
      <th class="col-md-1"><%= _('Status') %></th>
      <th class="col-md-1"><%= _('Succeeded') %></th>
      <th class="col-md-1"><%= _('Failed') %></th>
      <th class="col-md-1"><%= _('Pending') %></th>
      <th class="col-md-1"><%= _('Total hosts') %></th>
      <th class="col-md-2"><%= sort :start_at, :as => _('Start') %></th>
    </tr>
  </thead>

  <tbody>
    <% @job_invocations.each do |invocation| %>
      <tr>
        <td><%= link_to_if_authorized invocation_description(invocation), hash_for_job_invocation_path(invocation).merge(:auth_object => invocation, :permission => :view_job_invocations, :authorizer => authorizer) %></td>
        <td><%= link_to_invocation_task_if_authorized(invocation) %></td>
        <td><%= invocation_result(invocation, :success_count) %></td>
        <td><%= invocation_result(invocation, :failed_count) %></td>
        <td><%= invocation_result(invocation, :pending_count) %></td>
        <td><%= invocation_result(invocation, :total_count) %></td>
        <td><%= time_in_words_span(invocation.start_at) %></td>
      </tr>
    <% end %>
  </tbody>
</table>
<%= will_paginate_with_info @job_invocations %>

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
foreman_remote_execution-1.6.5 app/views/job_invocations/index.html.erb
foreman_remote_execution-1.6.4 app/views/job_invocations/index.html.erb
foreman_remote_execution-1.5.6 app/views/job_invocations/index.html.erb
foreman_remote_execution-1.6.3 app/views/job_invocations/index.html.erb
foreman_remote_execution-1.6.2 app/views/job_invocations/index.html.erb
foreman_remote_execution-1.5.5 app/views/job_invocations/index.html.erb
foreman_remote_execution-1.6.1 app/views/job_invocations/index.html.erb
foreman_remote_execution-1.6.0 app/views/job_invocations/index.html.erb
foreman_remote_execution-1.5.4 app/views/job_invocations/index.html.erb
foreman_remote_execution-1.5.3 app/views/job_invocations/index.html.erb
foreman_remote_execution-1.5.2 app/views/job_invocations/index.html.erb
foreman_remote_execution-1.5.1 app/views/job_invocations/index.html.erb
foreman_remote_execution-1.5.0 app/views/job_invocations/index.html.erb
foreman_remote_execution-1.4.6 app/views/job_invocations/index.html.erb