<%= t("proposals.proposal.supports", count: proposal.total_votes) %> <%= t("proposals.proposal.supports_necessary") %>
<%= link_to vote_proposal_path(proposal, value: 'yes'), class: "button button-support tiny radius expand #{voted_classes[:in_favor]}",
title: t('proposals.proposal.support'), method: "post", remote: true do %>
<%= t("proposals.proposal.support") %>
<% end %>
<% if user_signed_in? && current_user.organization? %>
<%= t("votes.organizations") %>
<% elsif user_signed_in? && !proposal.votable_by?(current_user)%>
<%= t("votes.anonymous",
verify_account: link_to(t("votes.verify_account"), verification_path )).html_safe %>
<% elsif !user_signed_in? %>
<%= t("votes.unauthenticated",
signin: link_to(t("votes.signin"), new_user_session_path),
signup: link_to(t("votes.signup"), new_user_registration_path)).html_safe %>
<% end %>