Guest User

Untitled

a guest
Jul 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <% form_for(@recommendation) do |f| %>
  2. <fieldset>
  3. <legend>Add new recommendation!</legend>
  4.  
  5. <%= f.error_messages %>
  6.  
  7. <%= f.label :recommendation %>
  8. <%= f.text_field :recommendation %>
  9. <%= f.submit "Create" %>
  10. </fieldset>
  11. <% end %>
  12.  
  13. <ol>
  14. <%- @recommendations.each do |rec| -%>
  15. <li><%=h rec.recommendation %>, [<%= link_to "X", :confirm => "Are you sure?", :method => :delete %>]</li>
  16. <%- end -%>
  17. </ol>
Add Comment
Please, Sign In to add comment