Sha256: f9531b64d4af11e930a5d3c85377fe4b7e4884e3b64e48aacdac9951212495ab

Contents?: true

Size: 1.84 KB

Versions: 12

Compression:

Stored size: 1.84 KB

Contents

<% title @job_invocation.description, trunc_with_tooltip(@job_invocation.description, 120) %>
<% stylesheet 'foreman_remote_execution/job_invocations' %>
<% javascript 'charts', 'foreman_remote_execution/template_invocation' %>
<%= javascript_include_tag *webpack_asset_paths('foreman_remote_execution', :extension => 'js'), "data-turbolinks-track" => true, 'defer' => 'defer' %>

<%= breadcrumbs name_field: 'description' %>

<% if @job_invocation.task %>
  <% title_actions(button_group(job_invocation_task_buttons(@job_invocation.task))) %>
<% end %>

<ul class="nav nav-tabs" data-tabs="tabs">
  <li class="active">
    <a href="#primary" data-toggle="tab"><%= _('Overview') %></a>
  </li>
  <li>
    <a href="#preview_templates" data-toggle="tab"><%= _('Preview templates') %></a>
  </li>
  <% if @job_invocation.recurring_logic.present? %>
    <li><a href="#recurring_logic" data-toggle="tab"><%= _('Recurring logic') %></a></li>
  <% end %>
</ul>

<div class="tab-content">
  <div class="tab-pane active" id="primary">
    <%= render 'tab_overview', :job_invocation => @job_invocation, :hosts => @hosts %>
  </div>
  <div class="tab-pane" id="preview_templates">
    <%= render 'tab_preview_templates', :job_invocation => @job_invocation %>
  </div>

  <% unless @job_invocation.recurring_logic.nil? %>
  <div class="tab-pane" id="recurring_logic">
    <div class='col-md-6'>
      <% if @job_invocation.recurring_logic.try(:task_group) %>
      <%= render @job_invocation.recurring_logic.task_group, :task_group => @job_invocation.recurring_logic.try(:task_group) %>
      <% end %>
    </div>
  </div>
  <% end %>
</div>

<script id="job_invocation_refresh" data-refresh-url="<%= job_invocation_path(@job_invocation) %>">
<% if @auto_refresh %>
  delayed_refresh($('script#job_invocation_refresh').data('refresh-url'), job_invocation_refresh_data());
<% end %>
</script>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
foreman_remote_execution-1.6.6 app/views/job_invocations/show.html.erb
foreman_remote_execution-1.6.5 app/views/job_invocations/show.html.erb
foreman_remote_execution-1.6.4 app/views/job_invocations/show.html.erb
foreman_remote_execution-1.5.6 app/views/job_invocations/show.html.erb
foreman_remote_execution-1.6.3 app/views/job_invocations/show.html.erb
foreman_remote_execution-1.6.2 app/views/job_invocations/show.html.erb
foreman_remote_execution-1.5.5 app/views/job_invocations/show.html.erb
foreman_remote_execution-1.6.1 app/views/job_invocations/show.html.erb
foreman_remote_execution-1.6.0 app/views/job_invocations/show.html.erb
foreman_remote_execution-1.5.4 app/views/job_invocations/show.html.erb
foreman_remote_execution-1.5.3 app/views/job_invocations/show.html.erb
foreman_remote_execution-1.5.2 app/views/job_invocations/show.html.erb