Sha256: 0108fd0e5098949ca73afb4782d5c1db650dd8297b8ce9bf6834c291f72b36ae
Contents?: true
Size: 707 Bytes
Versions: 27
Compression:
Stored size: 707 Bytes
Contents
<h1>Listing attachments</h1> <table> <thead> <tr> <th>Name</th> <th>File</th> <th>Uid</th> <th></th> <th></th> <th></th> </tr> </thead> <tbody> <% @attachments.each do |attachment| %> <tr> <td><%= attachment.name %></td> <td><%= attachment.file %></td> <td><%= attachment.uid %></td> <td><%= link_to 'Show', attachment %></td> <td><%= link_to 'Edit', edit_attachment_path(attachment) %></td> <td><%= link_to 'Destroy', attachment, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Attachment', new_attachment_path %>
Version data entries
27 entries across 27 versions & 1 rubygems