@users variable empty. forget to pass the collection object for will_paginate?
In your Users controller, make sure you have @users and if you are using will_paginate, make sure you call .paginate(page: params[:page], per_page: 20]
and in your view, have <%= will_paginate @users %>
.