123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- -# 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.has-form
- %a.button.radius.success= "↑ <strong id='up-info'></strong>"
- %li.divider
- %li.has-form
- %a.button.radius= "↓ <strong id='down-info'></strong>"
- %ul.left
- %li
- %a.button.radius.alert{href: "#"} Add
- %section.main-section{style: "margin: 50px 10px"}
- %table{style: "width: 100%;"}
- %thead
- %tr
- %th Torrent
- %th Ratio
- %th Upload
- %th Download
- %th Publish
- %tbody
- - tlist.each do |t|
- %tr{data: {:torrent_id => "#{t["hash"]}"}}
- %td
- %h5= t["name"]
- %td.text-center= "#{t["ratio"].to_f/1000}"
- %td.text-center= "#{t["up"].to_i/1024} ko/s"
- %td.text-center= "#{t["down"].to_i/1024} ko/s"
- %td.text-center
- .button-bar
- %ul.button-group.radius
- / %li
- / %a.tiny.button.alert{href: "#"} ❌
- %li
- %a{href: "#", data: {:torrent_id => "#{t["hash"][0,10]}"} } Share
- %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();
|