53 lines
1.3 KiB
Plaintext
53 lines
1.3 KiB
Plaintext
<%= stylesheet_link_tag 'gmaps4rails' %>
|
|
|
|
<h1>Collaborative Spaces in Arizona</h1>
|
|
<p>
|
|
<%= link_to 'Add Space', new_space_path %> |
|
|
<%= link_to 'JSON Feed', spaces_path("json") %>
|
|
</p>
|
|
|
|
<%= gmaps4rails(@json) %>
|
|
|
|
<%= yield :scripts %>
|
|
|
|
<br/>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Name</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.group_by{|s| s.category}.each do |category, spaces| %>
|
|
<tr><th colspan="7" style="text-align: left;">
|
|
<span style="color: <%= spaces.first.dot_color %>">•</span>
|
|
<%= category.titleize.pluralize %></th></tr>
|
|
<% spaces.each do |space| %>
|
|
<tr>
|
|
<td><%= space.name %></td>
|
|
<td><%= space.full_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 %>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|