You can <%= link_to "edit", edit_venue_url(@venue) %>
or <%= link_to "delete", venue_url(@venue), method: :delete, data: { confirm: "Are you sure?" } %>
this venue.
Download an <%= link_to "iCalendar file", venue_url(@venue, :format => :ics) %> or
<%= link_to "subscribe to a feed", venue_url(@venue, :format => :ics, :protocol => "webcal") %> of events at this venue.
<%= datestamp(@venue) %>
">
<%= @venue.title %>
<% if @venue.closed? %>
This venue is no longer open for business.
<% end %>
<% if @venue.has_full_address? %>
<% if @venue.street_address.present? %>
<%= @venue.street_address %>
<% end %>
<% if @venue.locality.present? %>
<%= @venue.locality %><%= "," if @venue.region.present? or @venue.postal_code.present? or @venue.country.present? %>
<% end %>
<% if @venue.region.present? %>
<%= @venue.region %><%= "," if @venue.country.present? and not @venue.postal_code.present? %>
<% end %>
<% if @venue.postal_code.present? %>
<%= @venue.postal_code %><%= "," if @venue.country.present? %>
<% end %>
<% if @venue.country.present? %>
<%= @venue.country %>
<% end %>
(map)