Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <h1>Listing tasks</h1>
- <h2><%= @target.username %></h2>
- <table>
- <tr>
- <th>Task</th>
- <th>Points</th>
- <th>Author</th>
- <th>Status</th>
- <th>Target</th>
- <th></th>
- <th></th>
- <th></th>
- </tr>
- <% @tasks.each do |task| %>
- <tr>
- <td><%= task.task %></td>
- <td><%= task.points %></td>
- <td><%= task.author.username %></td>
- <td><%= task.status %></td>
- <td><%= task.target_id %></td>
- <td><%= link_to 'Show', task %></td>
- <td><%= link_to 'Edit', edit_user_task_path(task) %></td>
- <td><%= link_to 'Destroy', task, method: :delete, data: { confirm: 'Are you sure?' } %></td>
- </tr>
- <% end %>
- </table>
- <br />
- <%= link_to 'New Task', new_user_task_path %>
Advertisement
Add Comment
Please, Sign In to add comment