<%= restaurant.url.present? ? link_to(restaurant.title, restaurant.url) : restaurant.title %> |
<%= restaurant.restaurant_categories.map(&:name).join(', ') %> |
<%= restaurant.favorite_dish %> |
<%= restaurant.neighborhood %> |
<%= restaurant.address.present? ? restaurant.address.for_geocoder : "no address for #{restaurant.id}" %> |
<%= link_to('Comment here', restaurant.comment_url) + (restaurant.user.present? ? " by #{restaurant.user}" : '') %> |
<%= link_to 'Show', restaurant %> |
<%= link_to 'Edit', edit_restaurant_path(restaurant) %> |
<%= link_to 'Destroy', restaurant, method: :delete, data: { confirm: 'Are you sure?' } %> |
<% end %>