Sha256: 28fe278441cb02fd3fd9d93cd45f71d25ef6a6d530b8f83be50c5790d6a24505
Contents?: true
Size: 755 Bytes
Versions: 13
Compression:
Stored size: 755 Bytes
Contents
<h1>Listing posts</h1> <table> <thead> <tr> <th>Title</th> <th>File</th> <th></th> <th></th> <th></th> </tr> </thead> <tbody> <% @posts.each do |post| %> <tr> <td><%= post.title %></td> <td><%= post.file %></td> <td><%= link_to 'Show', post %></td> <td><%= link_to 'Edit', edit_post_path(post) %></td> <td><%= link_to 'Destroy', post, method: :delete, data: { confirm: 'Are you sure?' } %></td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'New Post', new_post_path %> <br> <p>:uploadcare_uploader_tag test</p> <%= uploadcare_uploader_tag :file %> <br> <p>:uploadcare_uploader_field test</p> <%= uploadcare_uploader_field :post, :file %>
Version data entries
13 entries across 13 versions & 1 rubygems