Guest User

Untitled

a guest
Jul 18th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. {
  2. "cars":
  3. [
  4. {
  5. "id":1,
  6. "name":"Car 1",
  7. "garage_name":"This one"
  8. },
  9. {
  10. "id":2,
  11. "name":"Car 2",
  12. "garage_name":"That one"
  13. },
  14. {
  15. "id":3,
  16. "name":"Car 3",
  17. "garage_name":"The other one"
  18. }
  19. ],
  20. paginator: "<paginator HTML here>",
  21. pagination_info: "<paginator info HTML here>"
  22. }
  23.  
  24. collection @cars => :cars
  25. attributes :id, :name, :garage_name
  26.  
  27. node :paginator do
  28. paginate(@cars, window: 1, outer_window: 2, remote: true)
  29. end
  30.  
  31. node :pagination_info do
  32. page_entries_info(@cars)
  33. end
Add Comment
Please, Sign In to add comment