項目のリストを別々の列に出力する次のコードがあります。
- if @product.type_id == 2
%th.order_invoice_cell.each.count
#{l(:item)}
- @product.products.each do |p|
%th.order_invoice_cell
#{l(:item)}
ただし、すべての列には item、item、item という名前が付いています。item1 item2 item3などのように番号を記載したい場合。これどうやってするの。