Sha256: d920417b9242cb8b69c6a5a2151cb7c05381206733e52f7ac8f785d316947098
Contents?: true
Size: 588 Bytes
Versions: 17
Compression:
Stored size: 588 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Assets</h1> <table> <thead> <tr> <th>Title</th> <th>Image</th> <th>Slug</th> <th colspan="3"></th> </tr> </thead> <tbody> <% @assets.each do |asset| %> <tr> <td><%= asset.image %></td> <td><%= link_to 'Show', asset %></td> <td><%= link_to 'Edit', edit_asset_path(asset) %></td> <td><%= link_to 'Destroy', asset, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Asset', new_asset_path %>
Version data entries
17 entries across 17 versions & 1 rubygems