1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- -# coding: utf-8
- .off-canvas-wrap
- .inner-wrap
- .fixed
- %nav.top-bar
- %ul.title-area
- %li.name
- %h1
- %a{href: "#"} rSeed
- %li.toggle-topbar.menu-icon
- %a{href: "#"}
- %span Menu
- %section.top-bar-section
- %ul.right
- %li
- %a
- %span.disk-info
- %span.disk-bar
- %span.inner-bar
- %span.text-info
- %li.divider
- %li.has-form
- %a.button.radius.success
- %i.fi-arrow-up
- %strong#up-info
- %li.divider
- %li.has-form
- %a.button.radius
- %i.fi-arrow-down
- %strong#down-info
- %ul.left
- %li
- %a.button.radius.alert{href: "#", onClick: "poppupAddTorrent()"} Add
- %section.main-section{style: "margin: 50px 10px"}
- %table{style: "width: 100%;"}
- %thead
- %tr
- %th Torrent
- %th Ratio
- %th Upload
- %th Download
- %th Actions
- %tbody
- - tlist.each do |t|
- %tr{data: {:torrent_id => "#{t["hash"]}"}}
- %td.name
- #{t["name"]}
- %span.space.label.secondary.round.right
- %td.text-center.ratio
- %td.text-center.upspeed
- %td.text-center.downspeed
- %td.text-center
- %a{href: "#", data: {:torrent_id => "#{t["hash"][0,10]}"} }
- %i.fi-cloud
- |
- %a
- %i.fi-trash
- %a.exit-off-canvas
- %script{:src => '/js/vendor/jquery.js'}
- %script{:src => '/js/foundation.min.js'}
- %script{:src => '/js/notify-combined.min.js'}
- %script{:src => '/js/custom.js'}
- %script
- $(document).foundation();
|