Basis of rails-driven app for local business
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

16 lines
345 B

  1. <% title "Person" %>
  2. <p>
  3. <strong>Firstname:</strong>
  4. <%=h @person.firstname %>
  5. </p>
  6. <p>
  7. <strong>Lastname:</strong>
  8. <%=h @person.lastname %>
  9. </p>
  10. <p>
  11. <%= link_to "Edit", edit_person_path(@person) %> |
  12. <%= link_to "Destroy", @person, :confirm => 'Are you sure?', :method => :delete %> |
  13. <%= link_to "View All", people_path %>
  14. </p>