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

42 lines
956 B
Plaintext

<h1>Listing spaces</h1>
<table>
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Address</th>
<th>Hours</th>
<th>Phone</th>
<th>Email</th>
<th>Website</th>
<th>Description</th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<% @spaces.each do |space| %>
<tr>
<td><%= space.name %></td>
<td><%= space.type %></td>
<td><%= space.address %></td>
<td><%= space.hours %></td>
<td><%= space.phone %></td>
<td><%= space.email %></td>
<td><%= space.website %></td>
<td><%= space.description %></td>
<td><%= link_to 'Show', space %></td>
<td><%= link_to 'Edit', edit_space_path(space) %></td>
<td><%= link_to 'Destroy', space, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'New Space', new_space_path %>