Sha256: 4fc710fe2c7de403f078d981265c9bdf2e753a479aec39c5a0fc17924c596f98

Contents?: true

Size: 816 Bytes

Versions: 10

Compression:

Stored size: 816 Bytes

Contents

<div class='job-list'>
  <div class='list'>
    <div class='row'>
      <div class='col-sm-10'>
        <h2><%= @description %> Jobs</h2>
      </div>

      <div class='col-sm-2'>
        <div class='btn btn-default pull-right dt-reload' data-behavior='reload'>
          <i class='fas fa-sync'></i>
        </div>
      </div>
    </div>

    <table class='table datatable jobs-datatable' data-source='<%= @data_table_url %>' style='width: 100%'>
      <thead>
        <tr>
          <% @columns.each do |column| %>
            <th><%= column[:display] %></th>
          <% end %>
        </tr>
      </thead>

      <tbody></tbody>
    </table>
  </div>
</div>

<script>
  jQuery(function () {
    new RjmcDatatable(
      $('.jobs-datatable'),
      <%= @table_layout.to_json.html_safe %>
    );
  });
</script>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
rocketjob_mission_control-5.0.1 app/views/rocket_job_mission_control/jobs/index.html.erb
rocketjob_mission_control-5.0.0 app/views/rocket_job_mission_control/jobs/index.html.erb
rocketjob_mission_control-5.0.0.beta1 app/views/rocket_job_mission_control/jobs/index.html.erb
rocketjob_mission_control-4.3.0 app/views/rocket_job_mission_control/jobs/index.html.erb
rocketjob_mission_control-4.2.1 app/views/rocket_job_mission_control/jobs/index.html.erb
rocketjob_mission_control-4.2.0 app/views/rocket_job_mission_control/jobs/index.html.erb
rocketjob_mission_control-4.1.0 app/views/rocket_job_mission_control/jobs/index.html.erb
rocketjob_mission_control-4.0.0 app/views/rocket_job_mission_control/jobs/index.html.erb
rocketjob_mission_control-3.2.0 app/views/rocket_job_mission_control/jobs/index.html.erb
rocketjob_mission_control-3.1.0 app/views/rocket_job_mission_control/jobs/index.html.erb