Sha256: e1e86fa854ab00b59d29405d35e1b7f0b8745e8f952e6636983b2bf756a4fcb7

Contents?: true

Size: 842 Bytes

Versions: 2

Compression:

Stored size: 842 Bytes

Contents

<div class="row">
  <div class="section">
    <h1>Status</h1>

    <hr >

    <div class="section">
      <p>
        Filter Table <input data-table-filter placeholder="Enter Text" />
      </p>
    </div>

    <table>
      <thead>
      <tr>
        <th>Actions</th>
        <th>Date Ran</th>
        <th>Rake Task</th>
      </tr>
      </thead>

      <tbody>
      <% @rake_task_logs.each do |rake_task_log| %>
        <tr data-table-filterable="<%= rake_task_log.name %>">
          <td><%= link_to "View Logs", rake_task_log_path(rake_task_log.id), { class: 'btn' } %></td>
          <td><%= rake_task_log.date %></td>
          <td><%= link_to rake_task_log.name, rake_task_log_path(rake_task_log.id) %></td>
        </tr>
      <% end %>
      </tbody>
    </table>
  </div>
</div>

<%= render "partials/rake_ui/table_filterable" %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rake-ui-0.1.0 app/views/rake_ui/rake_task_logs/index.html.erb
rake-ui-0.0.1 app/views/rake_ui/rake_task_logs/index.html.erb