Sha256: 919e563cfeef9b79fe06774d8b3b62e340a191e670a6e0a08bef8a0ec6f9d07c
Contents?: true
Size: 566 Bytes
Versions: 5
Compression:
Stored size: 566 Bytes
Contents
<%= header new_dash_photo_path %> <table cellpadding="0" cellspacing="0"> <tr> <th>#</th> <th><%= Photo.human_attribute_name :created_at %></th> <th class="actions"><%= t 'dash.grid.actions' %></th> </tr> <% @photos.each do |photo| %> <tr> <td><%= photo.id %></td> <td><%= l photo.created_at %></td> <td class="actions"> <%= link_to t('dash.grid.update'), [:dash, photo] %> <%= link_to t('dash.grid.destroy'), [:dash, photo], method: 'delete' %> </td> </tr> <% end %> </table> <%= pager @photos %>
Version data entries
5 entries across 5 versions & 1 rubygems