Guest User

Untitled

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