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

Version Path
rails_dash-0.1.4 test/dummy/app/views/dash/photos/index.html.erb
rails_dash-0.1.3 test/dummy/app/views/dash/photos/index.html.erb
rails_dash-0.1.2 test/dummy/app/views/dash/photos/index.html.erb
rails_dash-0.1.1 test/dummy/app/views/dash/photos/index.html.erb
rails_dash-0.1.0 test/dummy/app/views/dash/photos/index.html.erb