Sha256: 72fca98b3230b1085975eae7d7179489e3ec5fdddc9e4595fe3b354ad8fae700

Contents?: true

Size: 1.86 KB

Versions: 5

Compression:

Stored size: 1.86 KB

Contents

<% title @job_invocation.description %>
<% stylesheet 'foreman_remote_execution/foreman_remote_execution' %>
<% javascript 'charts', 'foreman_remote_execution/template_invocation' %>
<% javascript *webpack_asset_paths('foreman_remote_execution', :extension => 'js') %>

<%= 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 %>
  <%= render_tab_header_for(:main_tabs, subject: @job_invocation) %>
</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 %>
  <%= render_tab_content_for(:main_tabs, subject: @job_invocation) %>
</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

5 entries across 5 versions & 1 rubygems

Version Path
foreman_remote_execution-3.2.2 app/views/job_invocations/show.html.erb
foreman_remote_execution-3.3.1 app/views/job_invocations/show.html.erb
foreman_remote_execution-3.3.0 app/views/job_invocations/show.html.erb
foreman_remote_execution-3.2.1 app/views/job_invocations/show.html.erb
foreman_remote_execution-3.2.0 app/views/job_invocations/show.html.erb