Visits suggestion feature is currently in beta stage. Expect bugs and problems and don't hesitate to report them to Github Issues.
<% if @visits.empty? %>
Hello there!
Here you'll find your <%= params[:status] %> visits, but now there are none. Create some areas on your map and pretty soon you'll see visit suggestions on this page!
<% else %>
<%= paginate @visits %>
<% @visits.each.with_index do |date, index| %>
<% date[:visits].each do |visit| %>
<%= render partial: 'visit', locals: { visit: visit } %>
<% end %>