Sha256: 041109fa026d8077a4347b50404afd2505cfdb7e207c7d8ea506729fa5fafd09

Contents?: true

Size: 562 Bytes

Versions: 5

Compression:

Stored size: 562 Bytes

Contents

%h1
  Buckets
%br
%p
  =link_to 'Create new bucket', "/api/buckets/new"

%table.display
  %thead
    %tr
      %th
        ID
      %th
        Name
      %th
        Size
      %th
        Blob List
      %th

  %tbody
    - @buckets.each do |bucket|
      %tr
        %td
          = link_to bucket.id, bucket_url(bucket.id)
        %td
          = bucket.name
        %td
          = bucket.size
        %td
          -bucket.blob_list.each do |blob|
            = blob
        %td
          =link_to_action 'Delete', destroy_bucket_url(bucket.name), :delete

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
steamcannon-deltacloud-core-0.1.1.3 views/buckets/index.html.haml
steamcannon-deltacloud-core-0.1.1.2 views/buckets/index.html.haml
steamcannon-deltacloud-core-0.1.1.1 views/buckets/index.html.haml
deltacloud-core-0.1.1 views/buckets/index.html.haml
deltacloud-core-0.1.0 views/buckets/index.html.haml