Sha256: 32687a21ea55ee3c0b653467b4236db958fba8f8870142e7031092c6ab924a15
Contents?: true
Size: 544 Bytes
Versions: 4
Compression:
Stored size: 544 Bytes
Contents
<h1>Listing tasks</h1> <table> <tr> <th>Name</th> <th>Project</th> <th>Status</th> <th></th> <th></th> <th></th> </tr> <% @tasks.each do |task| %> <tr> <td><%= task.name %></td> <td><%= task.project_id %></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, confirm: 'Are you sure?', method: :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Task', new_task_path %>
Version data entries
4 entries across 4 versions & 1 rubygems