Sha256: 2d2c9e52756dd45c3160d5507569a89555e0ec8e8a5e78d2712aa304a450e85a

Contents?: true

Size: 641 Bytes

Versions: 3

Compression:

Stored size: 641 Bytes

Contents

<h1>Listing tasks</h1>

<table>
  <thead>
    <tr>
      <th>Project</th>
      <th>Description</th>
      <th>Status</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @tasks.each do |task| %>
      <tr>
        <td><%= task.project %></td>
        <td><%= task.description %></td>
        <td><%= task.status %></td>
        <td><%= link_to 'Show', task %></td>
        <td><%= link_to 'Edit', edit_task_path(task) %></td>
        <td><%= link_to 'Destroy', task, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Task', new_task_path %>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
select2_helper-0.2.1 test/dummy/app/views/tasks/index.html.erb
select2_helper-0.2.0 test/dummy/app/views/tasks/index.html.erb
select2_helper-0.1.4 test/dummy/app/views/tasks/index.html.erb