Guest User

Untitled

a guest
Mar 17th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. ##view##
  2. <% for course in @courses %>
  3. <div id = "<%= cycle("stripe", "nostripe")%>">
  4. <tr>
  5. <td><%=h course.description %></td>
  6. <td><%= link_to 'Show', course %></td>
  7. <td><%= link_to 'Edit', edit_course_path(course) %></td>
  8. <td><%= link_to 'Destroy', course, :confirm => 'Are you sure?', :method => :delete %></td>
  9. </tr>
  10. </div>
  11. <% end %>
Add Comment
Please, Sign In to add comment