Sha256: 2939bb2b9ff001df2f3bbb0c39b62b1194ce24b0106595182a42169f69c035e0
Contents?: true
Size: 1.16 KB
Versions: 2
Compression:
Stored size: 1.16 KB
Contents
<h1>Listing Illustrations</h1> <table class='table table-striped'> <thead> <tr> <th>Illustration</th> <th>Name & Paths</th> <th>Actions</th> </tr> </thead> <tbody> <% @illustrations.each do |illustration| %> <tr> <td><%= link_to image_tag(illustration.image.thumbnail), illustration %></td> <td> <h3><%= illustration.name %> | <%= link_to(' See all resolutions', illustration) %></h3> <b>Thumbnail</b> path: <%= illustration.image.thumbnail %><br /> <b>Small</b> path: <%= illustration.image.small %><br /> <b>Medium</b> path: <%= illustration.image.medium %><br /> <b>Large</b> path: <%= illustration.image.large %><br /> <b>XL</b> path: <%= illustration.image.xl %> </td> <td><%= link_to 'Edit', edit_illustration_path(illustration), class: 'btn btn-mini' %> <%= link_to 'Destroy', illustration, method: :delete, data: { confirm: 'Are you sure?' }, class: 'btn btn-mini btn-danger' %></td> </tr> <% end %> </tbody> </table> <%= will_paginate @illustrations %> <%= link_to 'Create New Illustration', new_illustration_path, class: 'btn btn-primary' %> <%= render 'shared/admin_sidebar' %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tkh_illustrations-0.1 | app/views/illustrations/index.html.erb |
tkh_illustrations-0.0.10 | app/views/illustrations/index.html.erb |