arizonacollab/app/views/spaces/show.html.erb
2013-10-08 22:10:03 -07:00

45 lines
598 B
Plaintext

<p id="notice"><%= notice %></p>
<p>
<strong>Name:</strong>
<%= @space.name %>
</p>
<p>
<strong>Type:</strong>
<%= @space.type %>
</p>
<p>
<strong>Address:</strong>
<%= @space.address %>
</p>
<p>
<strong>Hours:</strong>
<%= @space.hours %>
</p>
<p>
<strong>Phone:</strong>
<%= @space.phone %>
</p>
<p>
<strong>Email:</strong>
<%= @space.email %>
</p>
<p>
<strong>Website:</strong>
<%= @space.website %>
</p>
<p>
<strong>Description:</strong>
<%= @space.description %>
</p>
<%= link_to 'Edit', edit_space_path(@space) %> |
<%= link_to 'Back', spaces_path %>