2012-03-07 18:59:37 +00:00
|
|
|
%table#myTable.tablesorter.platforms{:cellspacing => "0", :cellpadding => "0"}
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th.th1= t("activerecord.attributes.platform.name")
|
|
|
|
%th.th2= t("activerecord.attributes.platform.distrib_type")
|
|
|
|
%tbody
|
|
|
|
- @platforms.each do |platform|
|
|
|
|
%tr{:class => cycle("odd", "even")}
|
|
|
|
%td
|
2012-04-01 16:19:54 +01:00
|
|
|
= link_to platfrom_printed_name(platform), platform_path(platform)
|
2012-03-07 18:59:37 +00:00
|
|
|
%td
|
|
|
|
= platform.distrib_type
|