Sha256: 92aa073b754c86eff7574c2e44a23d85c1af98494ced183b054bff6605e2f8a0

Contents?: true

Size: 1.24 KB

Versions: 5

Compression:

Stored size: 1.24 KB

Contents

<% content_for :body do %>
  <%= render partial: 'runners' %>
  <%= render partial: 'naf/shared/information_container', locals: { record_name: "Jobs" } %>
  <%= render partial: 'search_container' %>
  <%= render partial: 'naf/shared/select_per_page' %>

  <div id="flash_message">
      <% unless notice.blank? %>
        <script type='text/javascript'>
          jQuery("<p id='notice'><%= notice %></p>")
              .appendTo('#flash_message')
              .slideDown().delay(5000).slideUp();
        </script>
      <% end %>
  </div>

  <table id='datatable'>
    <thead>
      <tr>
        <th>Id</th>
        <th>Server</th>
        <th>Pid</th>
        <th>Queued Time</th>
        <th>Title</th>
        <th>Started At</th>
        <th>Finished At</th>
        <th>Run Time</th>
        <th>Affinities</th>
        <th>Tags</th>
        <th>Status</th>
        <th></th>
        <th>Actions</th>
      </tr>
    </thead>
    <tbody>
      <tr></tr>
    </tbody>
  </table>

  <% content_for :javascripts do %>
    <%= javascript_include_tag("dataTablesTemplates/jobs.js") %>
    <script type='text/javascript'>
      var sAjaxSource = "<%= naf.historical_jobs_path(:json) %>";
    </script>
  <% end %>
<% end %>

<%= render partial: 'naf/shared/application' %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
naf-1.1.4 app/views/naf/historical_jobs/index.html.erb
naf-1.1.3 app/views/naf/historical_jobs/index.html.erb
naf-1.1.2 app/views/naf/historical_jobs/index.html.erb
naf-1.1.1 app/views/naf/historical_jobs/index.html.erb
naf-1.1.0 app/views/naf/historical_jobs/index.html.erb