will_paginate undefined method `total_pages'
include
require 'will_paginate/array'
before loading that code will solve your problem.
try to change
@locations.paginate(:page => 1, :per_page => 2)
to
@locations = @locations.paginate(:page => 1, :per_page => 2)
hope this helps