<%= number_with_delimiter(current_user.total_km) %> km
Total distance
<%= number_with_delimiter current_user.points.count %>
Geopoints tracked
<% if REVERSE_GEOCODING_ENABLED %>
<%= number_with_delimiter current_user.total_reverse_geocoded %>
Reverse geocoded points
<%= number_with_delimiter current_user.total_countries %>
Countries visited
<%= current_user.total_cities %>
Cities visited
<% end %>
<%= link_to 'Update stats', stats_path, method: :post, class: 'btn btn-primary mt-5' %> <% @stats.each do |year, stats| %>

<%= link_to points_url(year_timespan(year)), class: 'underline hover:no-underline' do %> <%= year %> <% end %>

<% stats.each do |stat| %> <%= render stat %> <% end %>
<% end %>