Sha256: 813bc61cdcffbe36c3ca6ee26914ed59072a039e144425ab02cb71db6238bf98

Contents?: true

Size: 1 KB

Versions: 3

Compression:

Stored size: 1 KB

Contents

- if unmanaged_files && unmanaged_files.files.length > 0
  %div
    %a.scope_anchor{ id: "unmanaged_files" }
    .scope#unmanaged_files_container{ "data-scope" => "unmanaged_files" }
      - count = unmanaged_files.files.length
      = render_partial "scope_header",
        :scope => "unmanaged_files",
        :title => "Unmanaged Files",
        :count => "#{count} #{Machinery.pluralize(count, "file")}"
      .row.scope_content.collapse.in
        .col-xs-1
        .col-xs-11
          %table.table.table-striped.table-hover.table-condensed.files-table.filterable
            %thead
              %tr
                %th Name
                %th.medium Type
            %tbody
              - unmanaged_files.files.each do |file|
                %tr
                  %td
                    - if file.on_disk?
                      %a.file-download{ href: "#" }
                        = file.name
                    - else
                      %span
                        = file.name
                  %td= file.type

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
machinery-tool-1.16.1 html/partials/unmanaged_files.html.haml
machinery-tool-1.16.0 html/partials/unmanaged_files.html.haml
machinery-tool-1.15.0 html/partials/unmanaged_files.html.haml