Advertisement
Guest User

index.html.erb

a guest
Sep 28th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <table class="table table-striped">
  2. <thead>
  3. <tr>
  4. <th>Start time</th>
  5. <th>Patient</th>
  6. <th>Description</th>
  7. <th></th>
  8. </tr>
  9. </thead>
  10. <% @appointments.each do |t| %>
  11. <tr>
  12. <th><%= t.datetime %> </th>
  13. <th><%= link_to t.patient, patient_path(t.patient_id) %> </th>
  14. <th><%= t.description %> </th>
  15. <th><%= link_to 'Edit', edit_appointment_path(t) %> </th>
  16. <th><%= link_to 'Destroy', patient_path(t),
  17. method: :delete,
  18. data: { confirm: 'Are you sure?' } %> </th>
  19. </tr>
  20. <% end %>
  21. </table>
  22. <p><%= link_to 'New Appointment', new_appointment_path %></p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement