Skip to content

Instantly share code, notes, and snippets.

@tubbo
Forked from anonymous/gist:4708502
Last active December 12, 2015 03:38
Show Gist options
  • Select an option

  • Save tubbo/4708514 to your computer and use it in GitHub Desktop.

Select an option

Save tubbo/4708514 to your computer and use it in GitHub Desktop.
<table>
<% current_user.hospital_bookings.each do |hospital_booking| %>
<tr>
<td>
<%= hospital_booking.hospital.try :name if hospital_booking == current_user.id %>
</td>
</tr>
<% end %>
<% if current_user.hospital_bookings.empty? %>
<tr><td>No bookings found.</td></tr>
<% end %>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment