Sha256: 93f7d8dc0d4dd8f40c6bf0971f5e71405b47c7820302ea49ce16c872d443b9b2

Contents?: true

Size: 495 Bytes

Versions: 4

Compression:

Stored size: 495 Bytes

Contents

%h1 Images
= form_for @image, url: admin_images_path, method: :post, multipart: true do |f|
  = f.text_field :name, placeholder: 'give your image a title'
  = f.file_field :file
  = f.submit 'Upload', class: 'btn btn-primary'

<hr>

%div.row
  - @images.each do |image|
    %div.col-md-3.col-sm-4.col-xs-6.thumbnail
      = image_tag image.file
      %p
        = link_to image.file, image.file
      = link_to 'delete', admin_image_path(image), method: :delete, class: 'btn btn-xs btn-default'

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
pages_cms-1.0.3 app/views/pages_cms/admin/images/index.html.haml
pages_cms-1.0.2 app/views/pages_cms/admin/images/index.html.haml
pages_cms-1.0.1 app/views/pages_cms/admin/images/index.html.haml
pages_cms-1.0.0 app/views/pages_cms/admin/images/index.html.haml