<% 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_votes_beyond_threshold? %>
- <%= t(".can_accumulate_votes_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.votes_remaining", remaining_votes: minimum_votes_per_user - votes_given) %>
<% end %>
<% end %>
<%= render partial: "decidim/proposals/proposals/remaining_votes_count" if current_user_can_vote? %>
<% end %>
<%= cell("decidim/announcement", { title: t(".title"), body: announcement_body }, id: "voting-rules") %>
<% end %>