Guest User

Untitled

a guest
Nov 19th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <% packages = {} %>
  2. <% @packages.each_with_index do |package, index| %>
  3. <% packages["package_#{package.id}"] = {"position" => index, "color" => "0x#{package_seating_color}", "sold_out" => package.sold_out, "price" => package.lowest_price, "range" => "price_1", "name" => package.name, "boxes", package.seating_boxes, "sections" => package.seating_list, "description" => truncate(package.seating_description, :length => 230)} %>
  4. <% end %>
  5. <% prices = {} %>
  6.  
  7. <%= raw({ "packages" => packages, "prices" => prices }.to_json) %>
Add Comment
Please, Sign In to add comment