Guest User

Untitled

a guest
Nov 11th, 2013
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.72 KB | None | 0 0
  1. <h1>Listing tasks</h1>
  2.  
  3. <h2><%= @target.username %></h2>
  4.  
  5. <table>
  6.   <tr>
  7.     <th>Task</th>
  8.     <th>Points</th>
  9.     <th>Author</th>
  10.     <th>Status</th>
  11.     <th>Target</th>
  12.     <th></th>
  13.     <th></th>
  14.     <th></th>
  15.   </tr>
  16.  
  17. <% @tasks.each do |task| %>
  18.   <tr>
  19.     <td><%= task.task %></td>
  20.     <td><%= task.points %></td>
  21.     <td><%= task.author.username %></td>
  22.     <td><%= task.status %></td>
  23.     <td><%= task.target_id %></td>
  24.     <td><%= link_to 'Show', task %></td>
  25.     <td><%= link_to 'Edit', edit_user_task_path(task) %></td>
  26.     <td><%= link_to 'Destroy', task, method: :delete, data: { confirm: 'Are you sure?' } %></td>
  27.   </tr>
  28. <% end %>
  29. </table>
  30.  
  31. <br />
  32.  
  33. <%= link_to 'New Task', new_user_task_path %>
Advertisement
Add Comment
Please, Sign In to add comment