diff --git a/app/views/polls/_reasons_for_not_answering.html.erb b/app/views/polls/_reasons_for_not_answering.html.erb deleted file mode 100644 index bd0bab3ad..000000000 --- a/app/views/polls/_reasons_for_not_answering.html.erb +++ /dev/null @@ -1,24 +0,0 @@ -<% if poll.incoming? %> -
- <%= t('poll_questions.show.cant_answer_incoming') %> -
-<% elsif poll.expired? %> -
- <%= t('poll_questions.show.cant_answer_expired') %> -
-<% elsif current_user.nil? %> -
- <%= t("poll_questions.show.not_logged_in", - signin: link_to(t("poll_questions.show.signin"), new_user_session_path, class: "probe-message"), - signup: link_to(t("poll_questions.show.signup"), new_user_registration_path, class: "probe-message")).html_safe %> -
-<% elsif current_user.unverified? %> -
- <%= t('poll_questions.show.cant_answer_verify_html', - verify_link: link_to(t('poll_questions.show.verify_link'), verification_path)) %> -
-<% else %> -
- <%= t('poll_questions.show.cant_answer_wrong_geozone') %> -
-<% end %>