We're choosing the default `with_first_argument` style because it's the one we use the most.
23 lines
800 B
Plaintext
23 lines
800 B
Plaintext
<% unless can?(:answer, @poll) %>
|
|
<% if current_user.nil? %>
|
|
<div class="callout primary">
|
|
<%= sanitize(t("polls.show.cant_answer_not_logged_in",
|
|
signin: link_to_signin(class: "probe-message"),
|
|
signup: link_to_signup(class: "probe-message"))) %>
|
|
</div>
|
|
<% elsif current_user.unverified? %>
|
|
<div class="callout warning">
|
|
<%= sanitize(t("polls.show.cant_answer_verify",
|
|
verify_link: link_to(t("polls.show.verify_link"), verification_path))) %>
|
|
</div>
|
|
<% elsif @poll.expired? %>
|
|
<div class="callout alert">
|
|
<%= t("polls.show.cant_answer_expired") %>
|
|
</div>
|
|
<% else %>
|
|
<div class="callout warning">
|
|
<%= t("polls.show.cant_answer_wrong_geozone") %>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|