Guest User

Untitled

a guest
Apr 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <p>
  2. <b>First name:</b>
  3. <%=h @patient.first_name %>
  4. </p>
  5.  
  6. <p>
  7. <b>Middle name:</b>
  8. <%=h @patient.middle_name %>
  9. </p>
  10.  
  11. <p>
  12. <b>Last name:</b>
  13. <%=h @patient.last_name %>
  14. </p>
  15.  
  16. <p>
  17. <b>Address1:</b>
  18. <%=h @patient.address1 %>
  19. </p>
  20.  
  21. <p>
  22. <b>Address2:</b>
  23. <%=h @patient.address2 %>
  24. </p>
  25.  
  26. <p>
  27. <b>City:</b>
  28. <%=h @patient.city %>
  29. </p>
  30.  
  31. <p>
  32. <b>State:</b>
  33. <%=h @patient.state %>
  34. </p>
  35.  
  36. <p>
  37. <b>Zip:</b>
  38. <%=h @patient.zip %>
  39. </p>
  40.  
  41. <p>
  42. <b>Dob:</b>
  43. <%=h @patient.dob %>
  44. </p>
  45.  
  46. <p>
  47. <% for bp in @patient.bps %>
  48. <%= h bp.note %><br/>
  49. <% end %>
  50. </p>
  51.  
  52.  
  53.  
  54. <%= link_to 'Edit', edit_patient_path(@patient) %> |
  55. <%= link_to 'Back', patients_path %>
Add Comment
Please, Sign In to add comment