result.haml 460 B

12345678910111213141516171819
  1. -# coding: utf-8
  2. %table{:class => "table table-hover"}
  3. %thead
  4. %tr
  5. %th Name
  6. %th Seeds
  7. %th Leechs
  8. %th Size
  9. %th DL
  10. %tbody
  11. - result["torrents"].each do |t|
  12. %tr
  13. %td= t['name']
  14. %td= t['seeders']
  15. %td= t['leechers']
  16. %td= "#{(t['size'].to_i/1000000)} Mo"
  17. %td
  18. %a{:href => "/d/" + t['id'], :title => t['name']}
  19. %span.glyphicon{:class => "glyphicon-arrow-down"}