ensl.org/app/views/maps/index.html.erb
2014-04-27 02:59:45 +01:00

22 lines
496 B
Text

<h1>Listing maps</h1>
<table class="striped">
<tr>
<th>Name</th>
<th>Download</th>
<th></th>
</tr>
<% @maps.each do |map| %>
<tr>
<td><%= namelink map %></td>
<td><%= h map.download %></td>
<td class="actions">
<%= link_to icon('pencil'), edit_map_path(map) %>
<%= link_to icon('times'), map, confirm: 'Are you sure?', method: :delete %>
</td>
</tr>
<% end %>
</table>
<%= link_to 'New Map', new_map_path, class: 'button' %>