<% if show_voting_rules? %>

<%= t(".title") %>

    <% if vote_limit_enabled? %>
  • <%= t(".vote_limit.description", limit: component_settings.vote_limit) %>
  • <% end %> <% if proposal_limit_enabled? %>
  • <%= t(".proposal_limit.description", limit: proposal_limit) %>
  • <% end %> <% if threshold_per_proposal_enabled? %>
  • <%= t(".threshold_per_proposal.description", limit: threshold_per_proposal) %>
  • <% end %> <% if can_accumulate_supports_beyond_threshold? %>
  • <%= t(".can_accumulate_supports_beyond_threshold.description", limit: threshold_per_proposal) %>
  • <% end %> <% if minimum_votes_per_user_enabled? %>
  • <%= t(".minimum_votes_per_user.description", votes: minimum_votes_per_user) %> <% if votes_given >= minimum_votes_per_user %> <%= t(".minimum_votes_per_user.given_enough_votes") %> <% else %> <%= t(".minimum_votes_per_user.supports_remaining", remaining_votes: minimum_votes_per_user - votes_given) %> <% end %>
  • <% end %>
<% if current_user_can_vote? %>
<%= t(".vote_limit.left", limit: component_settings.vote_limit) %> <%= render partial: "decidim/proposals/proposals/remaining_votes_count" %> <%= t(".vote_limit.votes") %>
<% end %>
<% end %>