<%= t "admin.stats.show.stats_title" %>

<%= link_to t("admin.stats.show.polls"), polls_admin_stats_path, class: "button hollow" %> <%= link_to t("admin.stats.show.participatory_budgets"), budgets_admin_stats_path, class: "button hollow" %> <%= link_to t("admin.stats.show.direct_messages"), direct_messages_admin_stats_path, class: "button hollow" %> <%= link_to t("admin.stats.show.proposal_notifications"), proposal_notifications_admin_stats_path, class: "button hollow" %> <%= link_to t("admin.stats.show.incomplete_verifications"), admin_verifications_path, class: "button hollow" %> <%= link_to t("admin.stats.show.sdg"), sdg_admin_stats_path, class: "button hollow" if feature?(:sdg) %>

<%= t "admin.stats.show.summary.debates" %>
<%= number_with_delimiter(@debates) %>

<%= t "admin.stats.show.summary.proposals" %>
<%= number_with_delimiter(@proposals) %>

<%= t "admin.stats.show.summary.comments" %>
<%= number_with_delimiter(@comments) %>

<% if feature?(:budgets) %>

<%= t "admin.stats.show.summary.budgets" %>
<%= number_with_delimiter(@budgets) %>

<% end %>

<%= t "admin.stats.show.summary.debate_votes" %>
<%= number_with_delimiter(@debate_votes) %>

<%= t "admin.stats.show.summary.comment_votes" %>
<%= number_with_delimiter(@comment_votes) %>

<%= t "admin.stats.show.summary.votes" %>
<%= number_with_delimiter(@votes) %>

<%= t "admin.stats.show.summary.user_level_two" %>
<%= number_with_delimiter(@user_level_two) %>

<%= t "admin.stats.show.summary.user_level_three" %>
<%= number_with_delimiter(@user_level_three) %>

<%= t "admin.stats.show.summary.verified_users_who_didnt_vote_proposals" %>
<%= number_with_delimiter(@user_ids_who_didnt_vote_proposals) %>

<%= render Admin::Stats::EventLinksComponent.new(@event_names) %>