# File data/examples/ruby/Borges/SushiNet/StoreCart.rb, line 35
  def render_row_for_count_on(count, item, r)
    if count == 1 then
      ''
    else
      "(#{count}) "
    end

    r.table_row_with do
      r.anchor('-') do
        remove(item)
      end
    end

    r.table_row_with("#{count} #{item.title}")
    r.table_row_with((count * item.price).to_cents)
  end