forked from bofh/fetsite
28 lines
581 B
Plaintext
28 lines
581 B
Plaintext
<h1>Listing galleries</h1>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Desc</th>
|
|
<th>Datum</th>
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
|
|
<% @galleries.each do |gallery| %>
|
|
<tr>
|
|
<td><%= gallery.name %></td>
|
|
<td><%= gallery.desc %></td>
|
|
<td><%= gallery.datum %></td>
|
|
<td><%= link_to 'Show', gallery %></td>
|
|
<td><%= link_to 'Edit', edit_gallery_path(gallery) %></td>
|
|
<td><%= link_to 'Destroy', gallery, method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
|
|
<br />
|
|
|
|
<%= link_to 'New Gallery', new_gallery_path %>
|