<% unless can?(:answer, @poll) %> <% if current_user.nil? %>
<%= t("polls.show.cant_answer_not_logged_in", signin: link_to(t("polls.show.signin"), new_user_session_path, class: "probe-message"), signup: link_to(t("polls.show.signup"), new_user_registration_path, class: "probe-message")).html_safe %>
<% elsif current_user.unverified? %>
<%= t('polls.show.cant_answer_verify_html', verify_link: link_to(t('polls.show.verify_link'), verification_path)) %>
<% elsif @poll.incoming? %>
<%= t('polls.show.cant_answer_incoming') %>
<% elsif @poll.expired? %>
<%= t('polls.show.cant_answer_expired') %>
<% else %>
<%= t('polls.show.cant_answer_wrong_geozone') %>
<% end %> <% end %>