2011-10-17 15:27:07 +01:00
|
|
|
%table.table
|
|
|
|
%tr
|
|
|
|
%th.first= t("activerecord.attributes.platform.name")
|
|
|
|
%th.last
|
|
|
|
- @platforms.each do |platform|
|
|
|
|
%tr{:class => cycle("odd", "even")}
|
|
|
|
%td
|
|
|
|
= link_to platform.name, platform_path(platform)
|
|
|
|
%td.last
|
|
|
|
#{link_to t("layout.show"), platform_path(platform)} | #{link_to t("layout.delete"), platform_path(platform), :method => :delete, :confirm => t("layout.platforms.confirm_delete")}
|