Sha256: 63429c3f593cec1057bf1f3080f390a6901bcbb1cf2589d5ed8d835979e91c94

Contents?: true

Size: 1.26 KB

Versions: 2

Compression:

Stored size: 1.26 KB

Contents

- @title = root

= partial("header", :locals => { :parent => parent, :file => false, :idx => idx })

- if contents && contents.any?
  %table#fileListing.condensed-table.zebra-striped
    %thead
      %tr
        %th File
        %th Author
        %th Last Modified
        %th Size

    %tbody
      - contents.each_with_index do |f, i|
        %tr
          %td
            %img{ :src => "/img/#{f.dir? ? 'folder' : 'file'}.png", :width => 16, :height => 16 }
            %a{ :href => "/#{idx}#{request.path_info}/#{f.name}" }
              = f.name
          %td.author
          %td.modified
          %td.size

- if contents.empty?
  %p No files were found in this directory.

.row
  .span6
    %form.upload{ :method => "post", :enctype => "multipart/form-data", :action => "/#{idx}#{request.path_info}?mode=upload" }
      %p Upload file to this directory
      %input{:type => 'file', :value => "Select a file", :name => "file", :class => "uploader" }
      %input{:type => 'submit', :value => "Upload file", :class => "btn secondary" }
  .span6
    %form.add
      %p Add new file in this directory
      %input{:type => 'text', :name => "path", :class => "edit", :placeholder => "somefile.md" }
      %input{:type => 'submit', :value => "New file", :class => "btn secondary" }

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gitdocs-0.4.10 lib/gitdocs/views/dir.haml
gitdocs-0.4.9 lib/gitdocs/views/dir.haml