12345678910111213141516171819 |
- -# coding: utf-8
- %table{:class => "table table-hover"}
- %thead
- %tr
- %th Name
- %th Seeds
- %th Leechs
- %th Size
- %th DL
- %tbody
- - result["torrents"].each do |t|
- %tr
- %td= t['name']
- %td= t['seeders']
- %td= t['leechers']
- %td= "#{(t['size'].to_i/1000000)} Mo"
- %td
- %a{:href => "/d/" + t['id'], :title => t['name']}
- %span.glyphicon{:class => "glyphicon-arrow-down"}
|